forked from CZ-NIC/deckard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.18 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
#!/usr/bin/env python3
from distutils.core import setup
version = '3.0'
kwargs = {
'name': 'deckard',
'version': version,
'description': 'DNS toolkit',
'long_description':
"""Deckard is a DNS software testing based on library pydnstest.
It supports parsing and running Unbound-like test scenarios,
and setting up a mock DNS server. It's based on dnspython.""",
'author': 'CZ.NIC',
'author_email': 'knot-dns-users@lists.nic.cz',
'license': 'BSD',
'url': 'https://gitlab.labs.nic.cz/knot/deckard',
'packages': ['pydnstest'],
'python_requires': '>=3.3',
'install_requires': [
'dnspython>=1.15',
'jinja2',
'PyYAML',
'python-augeas'
],
'classifiers': [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only'
'Operating System :: POSIX :: Linux',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
}
setup(**kwargs)