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

Side by Side Diff: third_party/twisted_8_1/twisted/flow/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 import sys
2
3 try:
4 from twisted.python import dist
5 except ImportError:
6 raise SystemExit("twisted.python.dist module not found. Make sure you "
7 "have installed the Twisted core package before "
8 "attempting to install any other Twisted projects.")
9
10 if __name__ == '__main__':
11 dist.setup(
12 twisted_subproject="flow",
13 # metadata
14 name="Twisted Flow",
15 description="A Twisted concurrency programming library.",
16 author="Twisted Matrix Laboratories",
17 author_email="twisted-python@twistedmatrix.com",
18 maintainer="Clark Evans",
19 maintainer_email="cce@twistedmatrix.com",
20 url="http://twistedmatrix.com/trac/wiki/TwistedFlow",
21 license="MIT",
22 long_description="""\
23 Twisted Flow aims to make asynchronous programming a easier,
24 using python generators.
25 """,
26 )
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/flow/topfiles/README ('k') | third_party/twisted_8_1/twisted/flow/web.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698