diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-13 10:21:32 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-04-13 10:21:32 +0200 |
commit | eca20b701c411046e7ededb0462b310124ce3c18 (patch) | |
tree | c5eb36261cfc935f001b816f28f15d1f5afbf7e0 /setup.py | |
parent | Merge branch 'stable' into 0.4.10 (diff) | |
download | pyload-eca20b701c411046e7ededb0462b310124ce3c18.tar.xz |
Cleanup + fixup + new lib
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -63,14 +63,15 @@ setup( ], extras_require={ - 'Few plugins dependencies': ["BeautifulSoup >= 3.2, < 3.3"] - 'Colored log' : ["colorlog"] - 'Lightweight webserver' : ["bjoern"] - 'RSS support' : ["feedparser"] - 'SSL support' : ["pyOpenSSL"] - 'RSDF/CCF/DLC support' : ["pycrypto"] - 'Captcha recognition' : ["PIL"] - 'JSON speedup' : ["simplejson"] + 'Few plugins dependencies': ["BeautifulSoup >= 3.2, < 3.3"], + 'Colored log' : ["colorlog"], + 'Lightweight webserver' : ["bjoern"], + 'RSS support' : ["feedparser"], + 'SSL support' : ["pyOpenSSL"], + 'RSDF/CCF/DLC support' : ["pycrypto"], + 'Captcha recognition' : ["PIL"], + 'JSON speedup' : ["simplejson"], + 'Trash support' : ["Send2Trash"] }, #setup_requires=["setuptools_hg"], |