5
7
from setuptools import setup, find_packages
7
9
here = os.path.abspath(os.path.dirname(__file__))
8
README = open(os.path.join(here, 'README.rst')).read()
9
#CHANGES = open(os.path.join(here, 'CHANGELOG.rst')).read()
10
with io.open(os.path.join(here, 'README.rst'), encoding='utf8') as f:
12
#with io.open(os.path.join(here, 'CHANGELOG.rst'), encoding='utf8') as f:
10
14
PY3 = sys.version_info[0] == 3
26
30
long_description=README,
27
31
classifiers=["Development Status :: 5 - Production/Stable",
28
32
"Intended Audience :: Developers",
29
"License :: OSI Approved :: BSD License",
33
"License :: OSI Approved :: MIT License",
30
34
"Topic :: Internet :: WWW/HTTP",
31
35
"Topic :: Software Development :: Libraries :: Python Modules",
36
"Programming Language :: Python :: Implementation :: PyPy",
37
"Programming Language :: Python :: Implementation :: CPython",
32
38
'Programming Language :: Python',
33
39
"Programming Language :: Python :: 2",
34
40
"Programming Language :: Python :: 2.6",
35
41
"Programming Language :: Python :: 2.7",
36
42
"Programming Language :: Python :: 3",
37
43
"Programming Language :: Python :: 3.2",
38
"Programming Language :: Python :: 3.3"
44
"Programming Language :: Python :: 3.3",
45
"Programming Language :: Python :: 3.4"
40
47
keywords='routes webob dispatch',
41
48
author="Ben Bangert",
42
49
author_email="ben@groovie.org",
43
url='http://routes.groovie.org/',
50
url='http://routes.readthedocs.org/',
45
52
test_suite="nose.collector",
46
53
include_package_data=True,