diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-08 17:41:14 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-08 17:41:14 +0100 |
commit | 8c9603722b027764a5d85e2dee7b7f3d2983b362 (patch) | |
tree | ab9725d631f442f71ae21b3e500ece0f74914f42 /pavement.py | |
parent | closed #450 (diff) | |
download | pyload-8c9603722b027764a5d85e2dee7b7f3d2983b362.tar.xz |
fixed deprecation warnings
Diffstat (limited to 'pavement.py')
-rw-r--r-- | pavement.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pavement.py b/pavement.py index 7f956e78d..618617ef0 100644 --- a/pavement.py +++ b/pavement.py @@ -37,7 +37,8 @@ setup( #data_files=[], include_package_data=True, exclude_package_data={'pyload': ['docs*', 'scripts*']}, #exluced from build but not from sdist - install_requires=['thrift >= 0.8.0', 'jinja2', 'pycurl', 'Beaker', 'bottle >= 0.10.0', 'BeautifulSoup>=3.2, <3.3'] + extradeps, + # 'bottle >= 0.10.0' not in list, because its small and contain little modifications + install_requires=['thrift >= 0.8.0', 'jinja2', 'pycurl', 'Beaker', 'BeautifulSoup>=3.2, <3.3'] + extradeps, extras_require={ 'SSL': ["pyOpenSSL"], 'DLC': ['pycrypto'], |