summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2016-12-09 21:00:32 +0100
committerYves Fischer <yvesf-git@xapek.org>2016-12-09 21:31:44 +0100
commite7093d8e19512c357890942f455c632a2089950d (patch)
tree61138b85a962402f4143cdc0006b9f5419e7099d
parentecc4b1014e126062a5be88142b81500db1dcfad7 (diff)
downloadwatchnews-e7093d8e19512c357890942f455c632a2089950d.tar.gz
watchnews-e7093d8e19512c357890942f455c632a2089950d.zip
update listed dependencies
use >= and reference more recent versions
-rw-r--r--setup.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 9d880c7..15af614 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,4 @@
#!/usr/bin/env python3
-
from distutils.core import setup
setup(name='watchnews',
@@ -10,9 +9,9 @@ setup(name='watchnews',
url='https://www.xapek.org/git/yvesf/watchnews',
packages=['watchnews'],
scripts=['watchnews-cli'],
- install_requires=['peewee==2.7.1',
- 'feedparser>=5.1.0',
- 'newspaper3k==0.1.5',
- 'Flask==0.10.1',
- 'll-xist==5.13']
+ install_requires=['peewee>=2.8.5',
+ 'feedparser>=5.2.1',
+ 'newspaper3k>=0.1.7',
+ 'Flask>=0.10.0',
+ 'll-xist>=5.22.1']
)