-
Notifications
You must be signed in to change notification settings - Fork 115
/
Copy pathsetup.py
49 lines (46 loc) · 1.45 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
"""
Brute force DNS domain names asynchronously
"""
from setuptools import find_packages, setup
import platform
dependencies = ['click', 'asyncio', 'tqdm', 'aiodns']
if platform.system() == "Windows":
dependencies.append('winloop')
else:
dependencies.append('uvloop')
setup(
name='aiodnsbrute',
version='0.3.2',
url='https://github.com/blark/aiodnsbrute',
download_url='https://github.com/blark/aiodnsbrute/archive/v0.3.2.tar.gz',
license='BSD',
author='Mark Baseggio',
author_email='[email protected]',
description='Brute force DNS domain names asynchronously',
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
package_data={'aiodnsbrute': ['wordlists/*']},
zip_safe=False,
platforms='any',
python_requires='>=3.5',
install_requires=dependencies,
entry_points={
'console_scripts': [
'aiodnsbrute = aiodnsbrute.cli:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)