diff options
author | Boris Bobrov <breton@cynicmansion.ru> | 2016-02-18 09:42:24 +0300 |
---|---|---|
committer | Boris Bobrov <breton@cynicmansion.ru> | 2016-02-18 09:42:24 +0300 |
commit | 149f46f7d596fa9f61dca915845ba9318b327fdd (patch) | |
tree | 2bc4dbea58ab536a69b7d52baf81f5c50df5a4ae | |
parent | 4f798a8a0c964fe9da74dde84f9e4067122f40ab (diff) | |
download | mediagoblin-149f46f7d596fa9f61dca915845ba9318b327fdd.tar.lz mediagoblin-149f46f7d596fa9f61dca915845ba9318b327fdd.tar.xz mediagoblin-149f46f7d596fa9f61dca915845ba9318b327fdd.zip |
Cleanup setup.py
Remove old comments and duplicate requirements from setup.py
-rw-r--r-- | setup.py | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -44,18 +44,10 @@ pyversion_install_requires = [] if PY2: pyversion_install_requires.append('argparse') # only for < 2.7 pyversion_install_requires.append('PasteScript') - # newer sqlalchemy-migrate requires pbr which BREAKS EVERYTHING AND IS - # TERRIBLE AND IS THE END OF ALL THINGS - # I'd love to remove this restriction. pyversion_install_requires.append('sqlalchemy-migrate>=0.9.6') - # # Annoying. Please remove once we can! We only indirectly - # # use pbr, and currently it breaks things, presumably till - # # their next release. - # pyversion_install_requires.append('pbr==0.5.22') 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('PasteScript') pyversion_install_requires.append('Paste') else: pyversion_install_requires.append('gunicorn') |