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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/uritemplate/__init__.py ('k') | third_party/uritemplate/uritemplate/__init__.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 import uritemplate
5
6 base_url = "http://github.com/uri-templates/uritemplate-py/"
7
8 setup(
9 name = 'uritemplate',
10 version = uritemplate.__version__,
11 description = 'URI Templates',
12 author = 'Joe Gregorio',
13 author_email = 'joe@bitworking.org',
14 url = base_url,
15 download_url = \
16 '%starball/uritemplate-py-%s' % (base_url, uritemplate.__version__),
17 packages = ['uritemplate'],
18 provides = ['uritemplate'],
19 long_description=open("README.rst").read(),
20 install_requires = ['simplejson >= 2.5.0'],
21 classifiers = [
22 'Development Status :: 4 - Beta',
23 'Intended Audience :: Developers',
24 'License :: OSI Approved :: Apache Software License',
25 'Programming Language :: Python',
26 'Programming Language :: Python :: 2',
27 'Programming Language :: Python :: 2.5',
28 'Programming Language :: Python :: 2.6',
29 'Programming Language :: Python :: 2.7',
30 'Programming Language :: Python :: 3',
31 'Programming Language :: Python :: 3.3',
32 'Operating System :: POSIX',
33 'Topic :: Internet :: WWW/HTTP',
34 'Topic :: Software Development :: Libraries :: Python Modules',
35 ]
36 )
37
OLDNEW
« 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