1#!/usr/bin/env python3
2from distutils.core import setup
3
4version = '3.0'
5
6setup(
7    name='deckard',
8    version=version,
9    description='DNS toolkit',
10    long_description=(
11        "Deckard is a DNS software testing based on library pydnstest."
12        "It supports parsing and running Unbound-like test scenarios,"
13        "and setting up a mock DNS server. It's based on dnspython."),
14    author='CZ.NIC',
15    author_email='knot-dns-users@lists.nic.cz',
16    license='BSD',
17    url='https://gitlab.labs.nic.cz/knot/deckard',
18    packages=['pydnstest'],
19    python_requires='>=3.5',
20    install_requires=[
21        'dnspython>=1.15',
22        'jinja2',
23        'PyYAML',
24        'python-augeas'
25    ],
26    classifiers=[
27        'Intended Audience :: Developers',
28        'License :: OSI Approved :: BSD License',
29        'Programming Language :: Python :: 3 :: Only'
30        'Operating System :: POSIX :: Linux',
31        'Topic :: Internet :: Name Service (DNS)',
32        'Topic :: Software Development :: Libraries :: Python Modules',
33        'Topic :: Software Development :: Quality Assurance',
34        'Topic :: Software Development :: Testing',
35    ]
36)
37