• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1from setuptools import setup
2
3from uritemplate import __version__
4
5packages = [
6    'uritemplate'
7]
8
9setup(
10    name="uritemplate",
11    version=__version__,
12    description='URI templates',
13    long_description="\n\n".join([open("README.rst").read(),
14                                  open("HISTORY.rst").read()]),
15    license="BSD 3-Clause License or Apache License, Version 2.0",
16    author="Ian Cordasco",
17    author_email="graffatcolmingov@gmail.com",
18    url="https://uritemplate.readthedocs.org",
19    packages=packages,
20    package_data={'': ['LICENSE', 'AUTHORS.rst']},
21    include_package_data=True,
22    classifiers=[
23        'Development Status :: 5 - Production/Stable',
24        'License :: OSI Approved',
25        'License :: OSI Approved :: BSD License',
26        'License :: OSI Approved :: Apache Software License',
27        'Intended Audience :: Developers',
28        'Programming Language :: Python',
29        'Programming Language :: Python :: 2',
30        'Programming Language :: Python :: 2.6',
31        'Programming Language :: Python :: 2.7',
32        'Programming Language :: Python :: 3',
33        'Programming Language :: Python :: 3.2',
34        'Programming Language :: Python :: 3.3',
35        'Programming Language :: Python :: 3.4',
36        'Programming Language :: Python :: 3.5',
37        'Programming Language :: Python :: Implementation :: CPython',
38    ],
39)
40