-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathsetup.py
32 lines (26 loc) · 875 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
30
31
32
from setuptools import find_packages
from setuptools import setup
__VERSION__ = '3.0.3'
def requirements():
with open('requirements.txt') as reqs:
install_req = reqs.read().splitlines()
return install_req
setup(
name='TrustTrees',
url='https://github.com/mandatoryprogrammer/TrustTrees',
description='A Tool for DNS Delegation Trust Graphing',
version=__VERSION__,
long_description=(
'Check out TrustTrees on `GitHub <https://github.com/mandatoryprogrammer/TrustTrees>`_!'
),
keywords='subdomain, subdomain-takeover, dns, dnssec, security, bug-bounty, bugbounty',
author='mandatoryprogrammer',
packages=find_packages(),
install_requires=requirements(),
include_package_data=True,
entry_points={
'console_scripts': [
'trusttrees = trusttrees.__main__:main',
],
},
)