From 830407e88f9d40d954356c3754f2647f91d5c06a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:26:00 +0200 Subject: Adding upstream version 5.6.0. Signed-off-by: Daniel Baumann --- tests/integration/deckard/setup.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tests/integration/deckard/setup.py (limited to 'tests/integration/deckard/setup.py') diff --git a/tests/integration/deckard/setup.py b/tests/integration/deckard/setup.py new file mode 100644 index 0000000..93e22b7 --- /dev/null +++ b/tests/integration/deckard/setup.py @@ -0,0 +1,36 @@ +#!/usr/bin/env python3 +from distutils.core import setup + +version = '3.0' + +setup( + 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.nic.cz/knot/deckard', + packages=['pydnstest'], + python_requires='>=3.5', + 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', + ] +) -- cgit v1.2.3