-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1.06 KB
/
setup.py
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
from setuptools import find_packages, setup
import os
readme = ""
if os.path.exists("README.rst"):
with open("README.rst") as f:
readme = f.read()
setup(name="xcat",
version="0.7.1",
author="Tom Forbes",
license="MIT",
author_email="tom@tomforb.es",
package_dir = {'xcat': 'xcat'},
packages = ["xcat"] + ["xcat." + p for p in find_packages("xcat")],
install_requires=["aiohttp>=1.3.5,<2.0.0", "click", "logbook", "xmltodict", 'colorama', 'ipgetter'],
entry_points={
'console_scripts': [
'xcat = xcat.xcat:run'
]
},
description="A command line tool to automate the exploitation of blind XPath injection vulnerabilities",
long_description=readme,
url="https://github.com/orf/xcat",
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.2',
'License :: OSI Approved :: MIT License',
])