forked from pneff/wsgiservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (33 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
name='WsgiService',
# Version number also needs to be updated in wsgiservice/__init__.py
version='0.2.5',
description="A lean WSGI framework for easy creation of REST services",
long_description=open('README').read(),
author=", ".join([
"Patrice Neff <[email protected]>",
]),
url='http://github.com/pneff/wsgiservice/tree/master',
download_url='http://pypi.python.org/pypi/WsgiService',
packages=find_packages(),
install_requires=[
'decorator',
'webob >= 0.9.7',
],
tests_require=[
'nose',
'mox',
],
setup_requires=['Sphinx-PyPI-upload'],
test_suite='nose.collector',
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
]
)