-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (27 loc) · 940 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "takeover.py",
version = "1.0.0",
author = "Vikrant Singh Chauhan",
author_email = "[email protected]",
description = ("This small script tries to detect subdomain takeovers from a list of domains. Fingerprints are taken from https://github.com/EdOverflow/can-i-take-over-xyz."),
license = "MIT",
keywords = "subdomain takeover",
url = "http://github.com/0xcrypto/takeover",
packages=['takeover'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Security",
"License :: OSI Approved :: MIT License",
],
install_requires=[
'requests', 'dnspython', 'click', 'selenium'
],
entry_points = {
'console_scripts': ['takeover=takeover.takeover:main'],
}
)