-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
55 lines (51 loc) · 1.6 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python3
import sys
from setuptools import setup
VERSION = "1.0.4"
# Main
setup(
name="tekover",
version=VERSION,
description="A subdomain takeover scanner using Python3 asyncio",
url="https://github.com/devl00p/tekover",
author="Nicolas Surribas",
author_email="[email protected]",
license="GPLv2",
platforms=["Any"],
packages=["tekover"],
package_data={"tekover": ["data/fingerprints.json", "data/resolvers.txt", "data/subdomain-wordlist.txt"]},
include_package_data=True,
zip_safe=False,
scripts=[
"bin/tekover",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Security",
],
install_requires=[
"httpx==0.18.2",
"dnspython==2.1.0",
"tld==0.12.6",
"rich==10.6.0"
],
entry_points={
"console_scripts": [
"tekover = tekover.tekover:tekover_main_wrapper",
]
}
)