forked from Pylons/webtest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (62 loc) · 1.95 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
import sys
from setuptools import setup
from setuptools import find_packages
version = '1.4.4.dev0'
tests_require = ['nose', 'coverage', 'mock', 'PasteDeploy', 'WSGIProxy2']
opt_install_requires = []
if sys.version_info[0] == 2:
tests_require.append('unittest2')
else:
tests_require.append('unittest2py3k')
if sys.version_info[0:2] < (2, 7):
opt_install_requires.append('ordereddict')
setup(name='WebTest',
version=version,
description="Helper to test WSGI applications",
long_description=open('README.rst').read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Paste",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
],
keywords='wsgi test unit tests web',
author='Ian Bicking',
author_email='ianb at colorstudy com',
maintainer='Gael Pasgrimaud',
maintainer_email='[email protected]',
url='http://webtest.pythonpaste.org/',
license='MIT',
packages=find_packages(exclude=[
'ez_setup',
'examples',
'tests',
'bootstrap',
'bootstrap-py3k',
]),
include_package_data=True,
zip_safe=False,
install_requires=[
'six',
'WebOb',
'waitress',
'beautifulsoup4',
] + opt_install_requires,
test_suite='nose.collector',
tests_require=tests_require,
extras_require={
'tests': tests_require,
},
entry_points="""
[paste.app_factory]
debug = webtest.debugapp:make_debug_app
""",
)