placement/vendor/Twisted-10.0.0/twisted/web/topfiles/setup.py

31 lines
1014 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="web",
scripts=dist.getScripts("web"),
# metadata
name="Twisted Web",
description="Twisted web server, programmable in Python.",
author="Twisted Matrix Laboratories",
author_email="twisted-python@twistedmatrix.com",
maintainer="James Knight",
url="http://twistedmatrix.com/trac/wiki/TwistedWeb",
license="MIT",
long_description="""\
Twisted Web is a complete web server, aimed at hosting web
applications using Twisted and Python, but fully able to serve static
pages, also.
""",
)