1
0
Fork 0
hepdns/setup.py

27 lines
905 B
Python
Raw Normal View History

2021-03-28 17:23:56 -05:00
from setuptools import setup
setup(name='hepdns',
version='0.1',
description='PowerDNS API proxy for Hurricane Electric DNS',
author='Bob Carroll',
author_email='bob.carroll@alum.rit.edu',
2021-03-28 18:34:03 -05:00
py_modules=['hepdns'],
2021-03-28 17:23:56 -05:00
install_requires=[
'gunicorn',
'flask',
'requests',
'pyyaml'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Internet :: Name Service (DNS)',
2021-04-25 18:00:30 -05:00
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'])