-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.12 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
import sys,os
sys.path.insert(0,os.getcwd())
from setuptools import setup
import DNS
setup(
#-- Package description
name = 'py3dns',
license = 'Python License',
version = DNS.__version__,
description = 'Python 3 DNS library',
long_description = """Python 3 DNS library:
""",
author = 'Anthony Baxter and others',
author_email = '[email protected] ',
maintainer="Scott Kitterman",
maintainer_email="[email protected]",
url = 'https://launchpad.net/py3dns',
packages = ['DNS'], keywords = ['DNS'],
zip_safe = False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python License (CNRI Python License)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)