-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (46 loc) · 1.12 KB
/
setup.py
File metadata and controls
48 lines (46 loc) · 1.12 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="zerodayforge",
version="1.0.0",
author="Aviral Srivastava",
author_email="aviralyash27@gmail.com",
description="Advanced Exploitation Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Aviral2642/zerodayforge",
packages=find_packages(),
include_package_data=True,
package_data={
'zerodayforge': [
'config/*.json',
'examples/*.*',
'scripts/*.sh'
]
},
install_requires=[
'impacket>=0.11.0',
'keystone-engine>=0.9.2',
'capstone>=5.0.0',
'pycryptodomex>=3.19.0',
'psutil>=5.9.0',
'scapy>=2.5.0',
'dnslib>=0.9.23',
'pyrdp>=1.0.0',
'argparse>=1.4.0'
],
entry_points={
'console_scripts': [
'zerodayforge=zerodayforge.ZeroDayForge:main'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Environment :: Console"
],
python_requires='>=3.8',
)