-
Notifications
You must be signed in to change notification settings - Fork 113
/
setup.py
43 lines (41 loc) · 1.33 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
"""
Brute force DNS domain names asynchronously
"""
from setuptools import find_packages, setup
dependencies = ['click', 'asyncio', 'uvloop', 'tqdm', 'aiodns']
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',
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',
]
)