-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
44 lines (38 loc) · 1.44 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
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
_here = os.path.dirname(__file__)
_readme = os.path.join(_here, 'README.rst')
_readme = open(_readme, 'r').read()
_changes = os.path.join(_here, 'CHANGES.rst')
_changes = open(_changes, 'r').read()
setup(name='wesgi',
version='0.10',
description='A WSGI middleware which processes ESI directives',
url="http://pypi.python.org/pypi/wesgi",
long_description='%s\n%s' % (_readme, _changes),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
keywords='web middleware wsgi esi',
author="Brian Sutherland",
author_email="[email protected]",
packages=find_packages(),
install_requires=["WebOb",
"httplib2",
"mock"],
include_package_data=True,
zip_safe=False,
test_suite="wesgi.tests",
)