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

Side by Side Diff: third_party/twisted_8_1/twisted/news/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
2 try:
3 from twisted.python import dist
4 except ImportError:
5 raise SystemExit("twisted.python.dist module not found. Make sure you "
6 "have installed the Twisted core package before "
7 "attempting to install any other Twisted projects.")
8
9 if __name__ == '__main__':
10 dist.setup(
11 twisted_subproject="news",
12 # metadata
13 name="Twisted News",
14 description="Twisted News is an NNTP server and programming library.",
15 author="Twisted Matrix Laboratories",
16 author_email="twisted-python@twistedmatrix.com",
17 maintainer="Jp Calderone",
18 maintainer_email="exarkun@divmod.com",
19 url="http://twistedmatrix.com/trac/wiki/TwistedNews",
20 license="MIT",
21 long_description="""\
22 Twisted News is an NNTP protocol (Usenet) programming library. The
23 library contains server and client protocol implementations. A simple
24 NNTP server is also provided.
25 """,
26 )
27
OLDNEW
« no previous file with comments | « third_party/twisted_8_1/twisted/news/topfiles/README ('k') | third_party/twisted_8_1/twisted/pair/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698