forked from RevoltSecurities/Subdominator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 975 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
28
29
30
31
32
from setuptools import setup, find_packages
with open("README.md", "r") as streamr:
long_description = streamr.read()
setup(
name='subdominator',
version='1.0.8',
author='D. Sanjai Kumar',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sanjai-AK47/Subdominator",
description='Subdominator - An ultimate subdomain enumeration tool for Security Researchers and Bug Bounty Hunters',
packages=find_packages(),
install_requires=[
'aiofiles>=23.2.1',
'aiohttp>=3.9.4',
'appdirs>=1.4.4',
'art>=6.1',
'fake_useragent>=1.5.0',
'beautifulsoup4>=4.11.1',
'PyYAML>=6.0.1',
'Requests>=2.31.0',
'rich>=13.7.1',
'urllib3>=1.26.18'
],
entry_points={
'console_scripts': [
'subdominator = subdominator.subdominator:main'
]
},
)