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

Unified Diff: third_party/uritemplate/setup.py

Issue 1091163002: Remove apiclient package (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: remove uritemplate Created 5 years, 8 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
« no previous file with comments | « third_party/uritemplate/__init__.py ('k') | third_party/uritemplate/uritemplate/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/uritemplate/setup.py
diff --git a/third_party/uritemplate/setup.py b/third_party/uritemplate/setup.py
deleted file mode 100755
index 9b71aae19e9167ade78f56c70e026b891f53c57f..0000000000000000000000000000000000000000
--- a/third_party/uritemplate/setup.py
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/usr/bin/env python
-
-from distutils.core import setup
-import uritemplate
-
-base_url = "http://github.com/uri-templates/uritemplate-py/"
-
-setup(
- name = 'uritemplate',
- version = uritemplate.__version__,
- description = 'URI Templates',
- author = 'Joe Gregorio',
- author_email = 'joe@bitworking.org',
- url = base_url,
- download_url = \
- '%starball/uritemplate-py-%s' % (base_url, uritemplate.__version__),
- packages = ['uritemplate'],
- provides = ['uritemplate'],
- long_description=open("README.rst").read(),
- install_requires = ['simplejson >= 2.5.0'],
- classifiers = [
- 'Development Status :: 4 - Beta',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: Apache Software License',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.5',
- 'Programming Language :: Python :: 2.6',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.3',
- 'Operating System :: POSIX',
- 'Topic :: Internet :: WWW/HTTP',
- 'Topic :: Software Development :: Libraries :: Python Modules',
- ]
-)
-
« no previous file with comments | « third_party/uritemplate/__init__.py ('k') | third_party/uritemplate/uritemplate/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698