File: setup.py

package info (click to toggle)
py3dns 3.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 260 kB
  • ctags: 445
  • sloc: python: 2,035; makefile: 10
file content (35 lines) | stat: -rw-r--r-- 1,123 bytes parent folder | download | duplicates (2)
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 distutils.core 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 = 'py3dns-hackers@lists.launchpad.net ',
      maintainer="Scott Kitterman",
      maintainer_email="scott@kitterman.com",
      url = 'https://launchpad.net/py3dns',
      packages = ['DNS'], keywords = ['DNS'],
      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'
      ]
)