~ntt-pf-lab/nova/monkey_patch_notification

« back to all changes in this revision

Viewing changes to vendor/Twisted-10.0.0/twisted/lore/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
import sys
 
5
 
 
6
try:
 
7
    from twisted.python import dist
 
8
except ImportError:
 
9
    raise SystemExit("twisted.python.dist module not found.  Make sure you "
 
10
                     "have installed the Twisted core package before "
 
11
                     "attempting to install any other Twisted projects.")
 
12
 
 
13
if __name__ == '__main__':
 
14
    dist.setup(
 
15
        twisted_subproject="lore",
 
16
        scripts=dist.getScripts("lore"),
 
17
        # metadata
 
18
        name="Twisted Lore",
 
19
        description="Twisted documentation system",
 
20
        author="Twisted Matrix Laboratories",
 
21
        author_email="twisted-python@twistedmatrix.com",
 
22
        maintainer="Andrew Bennetts",
 
23
        url="http://twistedmatrix.com/trac/wiki/TwistedLore",
 
24
        license="MIT",
 
25
        long_description="""\
 
26
Twisted Lore is a documentation generator with HTML and LaTeX support,
 
27
used in the Twisted project.
 
28
""",
 
29
        )