26 lines
689 B
Python
26 lines
689 B
Python
|
|
from setuptools import setup, find_packages
|
|
|
|
META = {
|
|
'name': 'wsgi_intercept',
|
|
'version': '0.2',
|
|
'author': 'Titus Brown, Kumar McMillan, Chris Dent',
|
|
'author_email': 'cdent@peermore.com',
|
|
'description': 'wsgi_intercept installs a WSGI application in place of a real URI for testing.',
|
|
# What will the name be?
|
|
#url="http://pypi.python.org/pypi/wsgi_intercept",
|
|
'long_description': open('README.md').read(),
|
|
'license': 'MIT License',
|
|
'packages': find_packages(),
|
|
'extras_require': {
|
|
'testing': [
|
|
'pytest>=2.4',
|
|
'httplib2',
|
|
'requests'
|
|
],
|
|
},
|
|
}
|
|
|
|
if __name__ == '__main__':
|
|
setup(**META)
|