diff options
author | 2015-05-12 17:21:33 +0200 | |
---|---|---|
committer | 2015-05-12 17:21:33 +0200 | |
commit | 0c525f750dad3f57297836ddea02da7d42ad5969 (patch) | |
tree | 2df5f1cd3fb29c71386e197ab782a7385b8e42bd /setup.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-0c525f750dad3f57297836ddea02da7d42ad5969.tar.xz |
Other import fixes (4)
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -47,28 +47,28 @@ setuptools.setup( install_requires=[ "Beaker >= 1.6", + "Getch", + "MultipartPostHandler", + "SafeEval", "bitmath", "bottle >= 0.10.0", "colorama", - "Getch", "jinja2", "markupsafe", - "MultipartPostHandler", + "pycrypto", "pycurl", "rename_process", - "SafeEval", "thrift >= 0.8.0", "wsgiserver" ], extras_require={ 'Few plugins dependencies': ["BeautifulSoup >= 3.2, < 3.3"], - 'Captcha recognition' : ["PIL"], + 'Captcha recognition' : ["Pillow"], 'Trash support' : ["Send2Trash"], 'Colored log' : ["colorlog"], 'Lightweight webserver' : ["bjoern"], 'SSL support' : ["pyOpenSSL"], - 'RSDF/CCF/DLC support' : ["pycrypto"], 'JSON speedup' : ["simplejson"] }, |