-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 968 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import io
from setuptools import setup, find_packages
from os import path
pwd = path.abspath(path.dirname(__file__))
with io.open(path.join(pwd, 'README.md'), encoding='utf-8') as readme:
desc = readme.read()
setup(
name='rxss',
version='0.0.2',
description='Tool to check reflecting params and paths in a bunch of URLs',
long_description=desc,
long_description_content_type='text/markdown',
author='basedygt',
license='Apache-2.0 License',
url='https://github.com/basedygt/rxss',
packages=find_packages(),
classifiers=[
'Topic :: Security',
'Operating System :: OS Independent',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
],
keywords=['rxss', 'Reflected Cross Site Scripting', 'Pentest tools'],
install_requires=['qsreplace'],
entry_points={
'console_scripts': [
'rxss = rxss:main',
],
},
)