Initial import to Tizen
[profile/ivi/python-twisted.git] / twisted / lore / topfiles / setup.py
1 # Copyright (c) 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         )