-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.17 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.17 KB
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
from setuptools import setup
long_description = open('README.rst').read()
setup(name='emulaterest',
description='WSGI middleware that does Rails style PUT and DELETE request emulation',
long_description=long_description,
author='Andras Biczo',
author_email='abiczo@gmail.com',
url='http://github.com/abiczo/emulaterest',
license='MIT',
version='0.2',
py_modules=['emulaterest'],
keywords='web wsgi middleware rest',
test_suite='nose.collector',
tests_require=['nose>=0.10.4', 'WebTest>=1.1'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points="""
[paste.filter_factory]
emulaterest = emulaterest:emulaterest_filter_factory
[paste.filter_app_factory]
emulaterest = emulaterest:emulaterest_filter_app_factory
""",
)