forked from bbangert/routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (31 loc) · 1.18 KB
/
setup.py
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
__version__ = '1.13'
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGELOG.rst')).read()
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 :: BSD License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='routes webob dispatch',
author="Ben Bangert",
author_email="[email protected]",
url='http://routes.groovie.org/',
license="MIT",
packages=find_packages(),
test_suite="nose.collector",
include_package_data=True,
zip_safe=False,
tests_require=['nose', 'webtest', 'webob', 'coverage'],
install_requires=[
"repoze.lru>=0.3"
],
)