File: setup.py

package info (click to toggle)
py3dns 3.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 328 kB
  • sloc: python: 2,048; makefile: 10
file content (36 lines) | stat: -rw-r--r-- 1,143 bytes parent folder | download | duplicates (3)
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
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 = 'py3dns-hackers@lists.launchpad.net ',
      maintainer="Scott Kitterman",
      maintainer_email="scott@kitterman.com",
      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'
      ]
)