1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
__version__ = '2.4.1'
import io
import os
import sys
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.rst'), encoding='utf8') as f:
README = f.read()
with io.open(os.path.join(here, 'CHANGELOG.rst'), encoding='utf8') as f:
CHANGES = f.read()
PY3 = sys.version_info[0] == 3
extra_options = {
"packages": find_packages(),
}
extras_require = {
'middleware': [
'webob',
]
}
extras_require['docs'] = ['Sphinx'] + extras_require['middleware']
if PY3:
if "test" in sys.argv or "develop" in sys.argv:
for root, directories, files in os.walk("tests"):
for directory in directories:
extra_options["packages"].append(os.path.join(root, directory))
setup(name="Routes",
version=__version__,
description='Routing Recognition and Generation Tools',
long_description=README + '\n\n' + CHANGES,
classifiers=["Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
keywords='routes webob dispatch',
author="Ben Bangert",
author_email="ben@groovie.org",
url='https://routes.readthedocs.io/',
license="MIT",
test_suite="nose.collector",
include_package_data=True,
zip_safe=False,
tests_require=['nose', 'webtest', 'webob', 'coverage'],
install_requires=[
"six",
"repoze.lru>=0.3"
],
extras_require=extras_require,
**extra_options
)
|