-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathsetup.py
40 lines (38 loc) · 1.17 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
33
34
35
36
37
38
39
40
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as streamr:
long_description = streamr.read()
setup(
name='subdominator',
version='2.1.0',
author='D. Sanjai Kumar',
author_email='[email protected]',
description='Subdominator - An ultimate subdomain enumeration tool for Security Researchers and Bug Bounty Hunters',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RevoltSecurities/Subdominator",
packages=find_packages(),
install_requires=[
'aiofiles>=24.1.0',
'aiohttp>=3.10.11',
'appdirs>=1.4.4',
'art>=6.4',
'beautifulsoup4>=4.13.3',
'colorama>=0.4.6',
'fake_useragent>=2.0.3',
'httpx>=0.28.1',
'Jinja2>=3.1.6',
'prompt_toolkit>=3.0.50',
'PyYAML>=6.0.2',
'Requests>=2.32.3',
'rich>=13.9.4',
'setuptools>=75.6.0',
'SQLAlchemy>=2.0.32',
'tldextract>=5.1.2',
'weasyprint>=65.0'
],
entry_points={
'console_scripts': [
'subdominator = subdominator.subdominator:main'
]
},
)