diff options
author | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-02-17 17:39:32 -0800 |
---|---|---|
committer | Christopher Allan Webber <cwebber@dustycloud.org> | 2016-02-19 10:22:14 -0800 |
commit | d61778a489f606f1bff4f01f250a0e3c4fb99e27 (patch) | |
tree | a4fe3a6a33ed9368476d452c5eab7a6e9c2238a1 /setup.py | |
parent | 149f46f7d596fa9f61dca915845ba9318b327fdd (diff) | |
download | mediagoblin-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.py | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -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', |