1from setuptools import setup 2 3setup( 4 name="uritemplate.py", 5 version="3.0.2", 6 description="URI templates", 7 long_description="\n\n".join([open("README.rst").read(), 8 open("HISTORY.rst").read()]), 9 license="BSD 3-Clause License or Apache License, Version 2.0", 10 author="Ian Cordasco", 11 author_email="graffatcolmingov@gmail.com", 12 url="https://uritemplate.readthedocs.org", 13 install_requires=["uritemplate>=2.0"], 14 classifiers=[ 15 'Development Status :: 5 - Production/Stable', 16 'License :: OSI Approved', 17 'License :: OSI Approved :: BSD License', 18 'License :: OSI Approved :: Apache Software License', 19 'Intended Audience :: Developers', 20 'Programming Language :: Python', 21 'Programming Language :: Python :: 2', 22 'Programming Language :: Python :: 2.6', 23 'Programming Language :: Python :: 2.7', 24 'Programming Language :: Python :: 3', 25 'Programming Language :: Python :: 3.2', 26 'Programming Language :: Python :: 3.3', 27 'Programming Language :: Python :: 3.4', 28 'Programming Language :: Python :: 3.5', 29 'Programming Language :: Python :: Implementation :: CPython', 30 ], 31) 32