forked from maurosoria/dirsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 983 Bytes
/
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
import setuptools
setuptools.setup(
name="dirsearch",
version="0.4.1",
author="Mauro Soria",
author_email="[email protected]",
description="Advanced web path scanner",
url="https://github.com/maurosoria/dirsearch",
packages=setuptools.find_packages(),
py_modules=["dirsearch"],
package_dir={"dirsearch": "../dirsearch"},
entry_points={
"console_scripts": ["dirsearch=dirsearch:Program"]
},
package_data={"": ["../default.conf", "../lib/controller/banner.txt", "../logs/*", "../reports/*", "../db/*"]},
include_package_data=True,
python_requires=">=3.0",
install_requires=["certifi>=2020.11.8", "chardet>=3.0.2", "urllib3>=1.21.1", "cryptography>=2.8", "PySocks"],
classifiers=[
"Programming Language :: Python",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License",
"Operating System :: OS Independent",
"Topic :: Security"
],
)