-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (40 loc) · 1.12 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
import os
from setuptools import setup, find_packages
version = '1.0a1'
description = "installs a WSGI application in place of a real URI for testing"
here = os.path.dirname(__file__)
readme = os.path.join(here, "README.rst")
long_description = open(readme).read()
tests_require = [
'nose',
'Paste',
'httplib2',
'mechanize',
'mechanoid',
'WebTest',
'zope.testbrowser',
'webunit',
]
extras_require = {
'test': tests_require,
'httplib2': ['httplib2'],
'zope.testbrowser': ['zope.testbrowser', 'mechanize>=0.1.7',],
'webunit': ['webunit'],
'webtest': ['WebTest'], # conventionally extras are lowercase
'mechanoid': ['mechanoid'],
'paste': ['Paste'],
}
setup(
name='wsgi_intercept',
version=version,
author='Titus Brown, Kumar McMillan',
author_email='[email protected]',
description=description,
url="http://code.google.com/p/wsgi-intercept/",
long_description=long_description,
license='MIT License',
packages=find_packages(),
extras_require=extras_require,
test_suite="nose.collector",
tests_require=tests_require,
)