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

Unified Diff: third_party/twisted_8_1/twisted/names/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/names/topfiles/setup.py
diff --git a/third_party/twisted_8_1/twisted/names/topfiles/setup.py b/third_party/twisted_8_1/twisted/names/topfiles/setup.py
deleted file mode 100644
index 5206815d5625ad7caabbd33b3c213c80c25cf3b9..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/names/topfiles/setup.py
+++ /dev/null
@@ -1,48 +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 :: No Input/Output (Daemon)",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: MIT License",
- "Programming Language :: Python",
- "Topic :: Internet :: Name Service (DNS)",
- "Topic :: Software Development :: Libraries :: Python Modules",
- ])
- else:
- extraMeta = {}
-
- dist.setup(
- twisted_subproject="names",
- # metadata
- name="Twisted Names",
- description="A Twisted DNS implementation.",
- author="Twisted Matrix Laboratories",
- author_email="twisted-python@twistedmatrix.com",
- maintainer="Jp Calderone",
- maintainer_email="exarkun@divmod.com",
- url="http://twistedmatrix.com/trac/wiki/TwistedNames",
- license="MIT",
- long_description="""\
-Twisted Names is both a domain name server as well as a client
-resolver library. Twisted Names comes with an "out of the box"
-nameserver which can read most BIND-syntax zone files as well as a
-simple Python-based configuration format. Twisted Names can act as an
-authoritative server, perform zone transfers from a master to act as a
-secondary, act as a caching nameserver, or any combination of
-these. Twisted Names' client resolver library provides functions to
-query for all commonly used record types as well as a replacement for
-the blocking gethostbyname() function provided by the Python stdlib
-socket module.
-""",
- **extraMeta)
« no previous file with comments | « third_party/twisted_8_1/twisted/names/topfiles/README ('k') | third_party/twisted_8_1/twisted/news/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698