~certify-web-dev/twisted/certify-trunk

« back to all changes in this revision

Viewing changes to twisted/names/topfiles/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-01-16 19:56:10 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060116195610-ykmxbia4mnnod9o2
Tags: 2.1.0-0ubuntu2
debian/copyright: Include copyright for python 2.3; some 2.3 files
are included in the upstream tarball, but not in the binary packages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import sys
2
 
 
3
 
from twisted.python import dist
4
 
 
5
 
if __name__ == '__main__':
6
 
    dist.setup(
7
 
        twisted_subproject="names",
8
 
        # metadata
9
 
        name="Twisted Names",
10
 
        version="0.1",
11
 
        description="A Twisted DNS implementation.",
12
 
        author="Twisted Matrix Laboratories",
13
 
        author_email="twisted-python@twistedmatrix.com",
14
 
        maintainer="Jp Calderone",
15
 
        maintainer_email="exarkun@divmod.com",
16
 
        url="http://twistedmatrix.com/projects/names/",
17
 
        license="MIT",
18
 
        long_description="""\
19
 
Twisted Names is both a domain name server as well as a client
20
 
resolver library. Twisted Names comes with an "out of the box"
21
 
nameserver which can read most BIND-syntax zone files as well as a
22
 
simple Python-based configuration format. Twisted Names can act as an
23
 
authoritative server, perform zone transfers from a master to act as a
24
 
secondary, act as a caching nameserver, or any combination of
25
 
these. Twisted Names' client resolver library provides functions to
26
 
query for all commonly used record types as well as a replacement for
27
 
the blocking gethostbyname() function provided by the Python stdlib
28
 
socket module.
29
 
""",
30
 
        )