| OLD | NEW |
| (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 | |
| OLD | NEW |