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

Unified Diff: third_party/uritemplate/setup.py

Issue 963953003: OAuth2 support in depot_tools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: restore git_cl 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
new file mode 100755
index 0000000000000000000000000000000000000000..9b71aae19e9167ade78f56c70e026b891f53c57f
--- /dev/null
+++ b/third_party/uritemplate/setup.py
@@ -0,0 +1,37 @@
+#!/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