aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2016-02-17 17:39:32 -0800
committerChristopher Allan Webber <cwebber@dustycloud.org>2016-02-19 10:22:14 -0800
commitd61778a489f606f1bff4f01f250a0e3c4fb99e27 (patch)
treea4fe3a6a33ed9368476d452c5eab7a6e9c2238a1 /setup.py
parent149f46f7d596fa9f61dca915845ba9318b327fdd (diff)
downloadmediagoblin-d61778a489f606f1bff4f01f250a0e3c4fb99e27.tar.lz
mediagoblin-d61778a489f606f1bff4f01f250a0e3c4fb99e27.tar.xz
mediagoblin-d61778a489f606f1bff4f01f250a0e3c4fb99e27.zip
Switch from Paste for serving to Waitress
Incredibly, it looks like none of our documentation has to change taking this route...!
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index bae0a52c..9cd63b05 100644
--- a/setup.py
+++ b/setup.py
@@ -43,16 +43,13 @@ def get_version():
pyversion_install_requires = []
if PY2:
pyversion_install_requires.append('argparse') # only for < 2.7
- pyversion_install_requires.append('PasteScript')
pyversion_install_requires.append('sqlalchemy-migrate>=0.9.6')
pyversion_install_requires.append('mock==1.0.1') # mock is in the stdlib for 3.3+
# PyPI version (1.4.2) does not have proper Python 3 support
pyversion_install_requires.append('ExifRead')
- pyversion_install_requires.append('Paste')
-else:
- pyversion_install_requires.append('gunicorn')
install_requires = [
+ 'waitress',
'alembic==0.6.6',
'python-dateutil',
'wtforms',