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

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-01-17 14:52:35 UTC
  • mfrom: (1.1.5 upstream) (2.1.2 etch)
  • Revision ID: james.westby@ubuntu.com-20070117145235-btmig6qfmqfen0om
Tags: 2.5.0-0ubuntu1
New upstream version, compatible with python2.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import sys
 
2
 
 
3
try:
 
4
    from twisted.python import dist
 
5
except ImportError:
 
6
    raise SystemExit("twisted.python.dist module not found.  Make sure you "
 
7
                     "have installed the Twisted core package before "
 
8
                     "attempting to install any other Twisted projects.")
 
9
 
 
10
if __name__ == '__main__':
 
11
    dist.setup(
 
12
        twisted_subproject="web2",
 
13
        # metadata
 
14
        name="Twisted Web2",
 
15
        description="Twisted Web2 is a web server.",
 
16
        author="Twisted Matrix Laboratories",
 
17
        author_email="twisted-python@twistedmatrix.com",
 
18
        maintainer="James Knight",
 
19
        maintainer_email="foom@fuhm.net",
 
20
        url="http://twistedmatrix.com/trac/wiki/TwistedWeb2",
 
21
        license="MIT",
 
22
        long_description="Twisted Web2 is a web server.",
 
23
        )