Skip to content
Snippets Groups Projects
Commit efac81ac authored by Daniel Salzman's avatar Daniel Salzman
Browse files

python: add setup.py

parent 4b4f2b96
No related branches found
No related tags found
No related merge requests found
Pipeline #42318 passed
......@@ -45,6 +45,7 @@ Makefile
Makefile.in
version.h
/python/setup.py
/samples/knot.sample.conf
/src/knot/modules/static_modules.h
......
......@@ -700,6 +700,7 @@ AC_CONFIG_FILES([Makefile
samples/Makefile
distro/Makefile
python/Makefile
python/setup.py
src/Makefile
src/knot/modules/static_modules.h
])
......
EXTRA_DIST = \
libknot/__init__.py \
libknot/control.py
libknot/control.py \
setup.py.in
import setuptools
setuptools.setup(
name='libknot',
version='@PACKAGE_VERSION@',
description='Python bindings for libknot',
author='Daniel Salzman',
author_email='daniel.salzman@nic.cz',
url='https://gitlab.labs.nic.cz/knot/knot-dns',
license='GPL-3.0',
packages=['libknot'],
classifiers=[ # See https://pypi.org/classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Systems Administration',
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment