-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
30 lines (27 loc) · 1009 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (c) 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="[email protected]",
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.
""",
)