-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (52 loc) · 1.8 KB
/
setup.py
File metadata and controls
53 lines (52 loc) · 1.8 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
49
50
51
52
53
from setuptools import setup, find_namespace_packages
setup(
name="subsurfer",
version="1.2.6",
description="Red Teaming and Web Bug Bounty Fast Asset Identification Tool",
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="arrester",
author_email="arresterloyal@gmail.com",
url="https://github.com/arrester/subsurfer",
packages=find_namespace_packages(include=['subsurfer*']),
package_data={
'subsurfer': ['core/config/*.yaml', 'core/handler/takeover/*.json'],
},
include_package_data=True,
install_requires=[
'rich>=13.7.0',
'aiohttp>=3.9.1',
'beautifulsoup4>=4.12.2',
'dnspython>=2.4.2',
'aiodns>=3.0.0',
'pyyaml>=6.0.1',
'asyncio>=3.4.3',
'pytest>=7.4.3',
'pytest-asyncio>=0.23.2',
'python-Wappalyzer>=0.3.1',
'setuptools>=78.1.1'
],
entry_points={
'console_scripts': [
'subsurfer=subsurfer.__main__:run_main',
],
},
python_requires='>=3.9',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Topic :: Security',
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.13',
'Operating System :: OS Independent',
],
keywords='security, subdomain enumeration, bug bounty, red team, web security',
project_urls={
'Bug Reports': 'https://github.com/arrester/subsurfer/issues',
'Source': 'https://github.com/arrester/subsurfer',
'Documentation': 'https://github.com/arrester/subsurfer#readme',
},
)