-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
28 lines (26 loc) · 1.09 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='Pdns_Remotebackend',
version='0.8.1',
description='Support package for PowerDNS remotebackend',
long_description='This package is intended to make writing remotebackends with python easier. It provides base class for request handling and connector classes for pipe and unix connectors.',
author='Aki Tuomi',
author_email='cmouse@cmouse.fi',
url='https://github.com/PowerDNS/pdns-remotebackend-python',
download_url='https://pypi.org/project/Pdns_Remotebackend',
license='MIT',
platforms=['all'],
packages=['pdns','pdns.remotebackend'],
package_dir={'pdns.remotebackend': 'src/pdns/remotebackend',
'pdns':'src/pdns'},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: Name Service (DNS)',
],
)