summaryrefslogtreecommitdiffstats
path: root/pavement.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-12-08 17:41:14 +0100
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2011-12-08 17:41:14 +0100
commit8c9603722b027764a5d85e2dee7b7f3d2983b362 (patch)
treeab9725d631f442f71ae21b3e500ece0f74914f42 /pavement.py
parentclosed #450 (diff)
downloadpyload-8c9603722b027764a5d85e2dee7b7f3d2983b362.tar.xz
fixed deprecation warnings
Diffstat (limited to 'pavement.py')
-rw-r--r--pavement.py3
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'],