-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.03 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.03 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name='subseeker',
version='2.1.2',
author="Matthew Greer",
author_email="pydev302@gmail.com",
license='MIT',
description="A sub enumeration tool.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DFC302/subseeker",
keywords=['enumeration', 'domain', 'sub', 'tool'],
packages=setuptools.find_packages(),
install_requires=[
"requests",
"argparse",
"termcolor",
],
package_data={'': ['LICENSE'], '': ['README.md'], '': ['wordlists.keywords.txt'], '': ['core.subseeker_config.json'],},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts': [
"subseeker = subseeker_core.subseeker:main",
],
},
)