-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (24 loc) · 817 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
28
from setuptools import setup, find_packages
import os
version = '1.2~dev'
base = os.path.dirname(__file__)
readme = open(os.path.join(base, 'README.rst')).read()
changelog = open(os.path.join(base, 'CHANGELOG.rst')).read()
setup(name='restdns',
version=version,
description='Rest API for DNS',
long_description=readme + '\n' + changelog,
classifiers=[],
keywords='django dns rest',
author='Antoine Millet',
author_email='[email protected]',
url='https://github.com/NaPs/Restdns',
license='MIT',
data_files=(
('/etc/', ('etc/restdns.conf',)),
),
scripts=['restdnsadm'],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=['django'])