-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 974 Bytes
/
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
from setuptools import setup
long_description = open('README.rst').read()
setup(name='pagecache',
description='Page caching WSGI middleware',
long_description=long_description,
author='Andras Biczo',
author_email='[email protected]',
url='http://github.com/abiczo/pagecache',
license='MIT',
version='0.1.1',
packages=['pagecache'],
keywords='cache wsgi',
zip_safe=False,
install_requires=['webob'],
test_suite='nose.collector',
tests_require=['nose>=0.10.4', 'webtest', 'python-memcached'],
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',
]
)