30 lines
964 B
Python
30 lines
964 B
Python
# Copyright (c) 2008 Twisted Matrix Laboratories.
|
|
# See LICENSE for details.
|
|
|
|
import sys
|
|
|
|
try:
|
|
from twisted.python import dist
|
|
except ImportError:
|
|
raise SystemExit("twisted.python.dist module not found. Make sure you "
|
|
"have installed the Twisted core package before "
|
|
"attempting to install any other Twisted projects.")
|
|
|
|
if __name__ == '__main__':
|
|
dist.setup(
|
|
twisted_subproject="lore",
|
|
scripts=dist.getScripts("lore"),
|
|
# metadata
|
|
name="Twisted Lore",
|
|
description="Twisted documentation system",
|
|
author="Twisted Matrix Laboratories",
|
|
author_email="twisted-python@twistedmatrix.com",
|
|
maintainer="Andrew Bennetts",
|
|
url="http://twistedmatrix.com/trac/wiki/TwistedLore",
|
|
license="MIT",
|
|
long_description="""\
|
|
Twisted Lore is a documentation generator with HTML and LaTeX support,
|
|
used in the Twisted project.
|
|
""",
|
|
)
|