This repository has been archived by the owner on Nov 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 161
/
setup.py
59 lines (53 loc) · 1.37 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
56
57
58
59
# -*- coding: utf-8 -*-
"""
ESD
~~~
Implements ESD setup
sudo python setup.py sdist bdist_wheel
sudo twine upload dist/ESD-0.0.x
:author: Feei <[email protected]>
:homepage: https://github.com/FeeiCN/ESD
:license: GPL, see LICENSE for more details.
:copyright: Copyright (c) 2018 Feei. All rights reserved
"""
import setuptools
from ESD import __version__
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='ESD',
version=__version__,
author='Feei',
author_email='[email protected]',
description='Enumeration Sub Domains(枚举子域名)',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/FeeiCN/ESD',
packages=setuptools.find_packages(),
install_requires=[
'colorlog',
'aiodns',
'aiohttp',
'async-timeout',
'requests',
'backoff',
'dnspython',
'pysocks',
'tqdm',
'colorama',
],
classifiers=[
"Topic :: Security",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
package_data={
'esdx': ['ESD/*.esd', 'ESD/*.pem']
},
include_package_data=True,
entry_points={
'console_scripts': [
'esd=ESD:main'
]
}
)