-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
41 lines (37 loc) · 961 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
29
30
31
32
33
34
35
36
37
38
39
40
41
import os.path
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
try:
with open(os.path.join(here, 'README.txt')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.txt')) as f:
CHANGES = f.read()
except IOError:
README = CHANGES = '' # tox
requires = [
'WebOb',
]
tests_require = [
'WebTest',
'pyramid',
'pytest',
]
setup(
name='subprocess_middleware',
version='0.3',
description='Subprocess WSGI middleware and Pyramid tween.',
long_description=README + '\n\n' + CHANGES,
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=True,
author='Laurence Rowe',
author_email='[email protected]',
url='http://github.com/lrowe/subprocess_middleware',
license='MIT',
install_requires=requires,
tests_require=tests_require,
extras_require={
'test': tests_require,
},
)