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

Unified Diff: third_party/twisted_8_1/twisted/conch/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 side-by-side diff with in-line comments
Download patch
Index: third_party/twisted_8_1/twisted/conch/topfiles/setup.py
diff --git a/third_party/twisted_8_1/twisted/conch/topfiles/setup.py b/third_party/twisted_8_1/twisted/conch/topfiles/setup.py
deleted file mode 100644
index 8e30ac5754d31fab02fb914cfa5733df8e13d471..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/conch/topfiles/setup.py
+++ /dev/null
@@ -1,46 +0,0 @@
-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__':
- if sys.version_info[:2] >= (2, 4):
- extraMeta = dict(
- classifiers=[
- "Development Status :: 4 - Beta",
- "Environment :: Console",
- "Environment :: No Input/Output (Daemon)",
- "Intended Audience :: Developers",
- "Intended Audience :: End Users/Desktop",
- "Intended Audience :: System Administrators",
- "License :: OSI Approved :: MIT License",
- "Programming Language :: Python",
- "Topic :: Internet",
- "Topic :: Security",
- "Topic :: Software Development :: Libraries :: Python Modules",
- "Topic :: Terminals",
- ])
- else:
- extraMeta = {}
-
- dist.setup(
- twisted_subproject="conch",
- scripts=dist.getScripts("conch"),
- # metadata
- name="Conch",
- description="Twisted SSHv2 implementation.",
- author="Twisted Matrix Laboratories",
- author_email="twisted-python@twistedmatrix.com",
- maintainer="Paul Swartz",
- maintainer_email="z3p@twistedmatrix.com",
- url="http://twistedmatrix.com/trac/wiki/TwistedConch",
- license="MIT",
- long_description="""\
-Conch is an SSHv2 implementation using the Twisted framework. It
-includes a server, client, a SFTP client, and a key generator.
-""",
- **extraMeta)
« no previous file with comments | « third_party/twisted_8_1/twisted/conch/topfiles/README ('k') | third_party/twisted_8_1/twisted/conch/ttymodes.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698