-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 897 Bytes
/
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
import os
from setuptools import setup
from pdns_filesystem import __version__
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='pdns-filesystem',
version=__version__,
description='PowerDNS backend using file system',
long_description=read('README.rst'),
author='Ivan Onushkin',
author_email='[email protected]',
license='Apache License 2.0',
url='http://github.com/iaon/pdns-filesystem',
packages=['pdns_filesystem'],
scripts=['bin/pdns-filesystem'],
tests_require=open('test-requirements.txt').readlines(),
install_requires=open('requirements.txt').readlines(),
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Topic :: Utilities'
]
)