-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (31 loc) · 1.03 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
import os
from setuptools import setup
from massdns import __version__
from massdns import __author__
setup(
name = "pymassdns",
version = __version__,
author = __author__,
author_email = "[email protected]",
description = "This is a python3 wrapper to MassDNS tool",
license = "BSD",
keywords = "massdns, bruteforce, dns, scanner",
url='https://github.com/Den1al/pymassdns',
packages=['massdns'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking",
"Topic :: System :: Networking :: Firewalls",
"Topic :: System :: Networking :: Monitoring",
],
install_requires=[
'requests',
],
)