Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Side by Side Diff: third_party/twisted_8_1/twisted/runner/topfiles/setup.py

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 try:
2 from twisted.python.dist import setup, ConditionalExtension as Extension
3 except ImportError:
4 raise SystemExit("twisted.python.dist module not found. Make sure you "
5 "have installed the Twisted core package before "
6 "attempting to install any other Twisted projects.")
7
8 extensions = [
9 Extension("twisted.runner.portmap",
10 ["twisted/runner/portmap.c"],
11 condition=lambda builder: builder._check_header("rpc/rpc.h")),
12 ]
13
14 if __name__ == '__main__':
15 setup(
16 twisted_subproject="runner",
17 # metadata
18 name="Twisted Runner",
19 description="Twisted Runner is a process management library and inetd "
20 "replacement.",
21 author="Twisted Matrix Laboratories",
22 author_email="twisted-python@twistedmatrix.com",
23 maintainer="Andrew Bennetts",
24 maintainer_email="spiv@twistedmatrix.com",
25 url="http://twistedmatrix.com/trac/wiki/TwistedRunner",
26 license="MIT",
27 long_description="""\
28 Twisted Runner contains code useful for persistent process management
29 with Python and Twisted, and has an almost full replacement for inetd.
30 """,
31 # build stuff
32 conditionalExtensions=extensions,
33 )
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/runner/topfiles/README ('k') | third_party/twisted_8_1/twisted/scripts/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698