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="[email protected]", 12 url="https://uritemplate.readthedocs.org", 13 install_requires=["uritemplate>=2.0"], 14 python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', 15 classifiers=[ 16 'Development Status :: 5 - Production/Stable', 17 'License :: OSI Approved', 18 'License :: OSI Approved :: BSD License', 19 'License :: OSI Approved :: Apache Software License', 20 'Intended Audience :: Developers', 21 'Programming Language :: Python', 22 'Programming Language :: Python :: 2', 23 'Programming Language :: Python :: 2.7', 24 'Programming Language :: Python :: 3', 25 'Programming Language :: Python :: 3.4', 26 'Programming Language :: Python :: 3.5', 27 'Programming Language :: Python :: 3.6', 28 'Programming Language :: Python :: Implementation :: CPython', 29 ], 30) 31