~0x44/nova/extdoc

« back to all changes in this revision

Viewing changes to vendor/Twisted-10.0.0/twisted/news/topfiles/setup.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2008 Twisted Matrix Laboratories.
 
2
# See LICENSE for details.
 
3
 
 
4
try:
 
5
    from twisted.python import dist
 
6
except ImportError:
 
7
    raise SystemExit("twisted.python.dist module not found.  Make sure you "
 
8
                     "have installed the Twisted core package before "
 
9
                     "attempting to install any other Twisted projects.")
 
10
 
 
11
if __name__ == '__main__':
 
12
    dist.setup(
 
13
        twisted_subproject="news",
 
14
        # metadata
 
15
        name="Twisted News",
 
16
        description="Twisted News is an NNTP server and programming library.",
 
17
        author="Twisted Matrix Laboratories",
 
18
        author_email="twisted-python@twistedmatrix.com",
 
19
        maintainer="Jp Calderone",
 
20
        url="http://twistedmatrix.com/trac/wiki/TwistedNews",
 
21
        license="MIT",
 
22
        long_description="""\
 
23
Twisted News is an NNTP protocol (Usenet) programming library. The
 
24
library contains server and client protocol implementations. A simple
 
25
NNTP server is also provided.
 
26
""",
 
27
    )
 
28