Files
deb-python-wsgi-intercept/setup.py
Chris Dent 02a14c981c Attempt to get working in python2 and 3 at the same time
Finding https://github.com/concordusapps/wsgi-intercept from
@concordusapps inspired me to revisit this.

With their work, plus the stuff I've recently done for tiddlyweb
I had enough gumption to move things along.

I've chosen not to use six as the extent of differences is
quite small and I prefer having the changes be quite visible.
2013-11-01 23:34:19 +00:00

26 lines
684 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',
'httplib2',
'requests'
],
},
}
if __name__ == '__main__':
setup(**META)