-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 1.01 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
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'pdorclient',
version = '0.4.4',
author = 'Saj Goonatilleke',
author_email = '[email protected]',
description = 'PowerDNS on Rails client library',
long_description = """
Use pdorclient to read and manipulate PowerDNS zone and record data from
your Python applications. This client-side library was designed to
work with the RESTful API exposed by PowerDNS on Rails.
""",
license = 'BSD',
platforms = [ 'Linux', 'Unix' ],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: System :: Systems Administration',
],
install_requires = [
'httplib2',
'lxml',
'restclient',
'simplejson',
],
packages = find_packages(exclude=['tests']),
)