forked from CZ-NIC/deckard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 995 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
#!/usr/bin/env python
import sys
from distutils.core import setup
version = '0.1.2'
kwargs = {
'name' : 'pydnstest',
'version' : version,
'description' : 'DNS toolkit',
'long_description' : \
"""pydnstest is a DNS software testing library. It supports parsing and running Unbound-like test scenarios,
and setting up a mock DNS server. It's based on dnspython.""",
'author' : 'Marek Vavrusa',
'author_email' : '[email protected]',
'license' : 'BSD',
'url' : 'https://github.com/CZ-NIC/deckard',
'packages' : ['pydnstest'],
'classifiers' : [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Software Development :: Libraries :: Python Modules",
],
}
if sys.hexversion >= 0x02050000:
kwargs['requires'] = ['dns']
kwargs['provides'] = ['pydnstest']
setup(**kwargs)