diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2016-12-09 21:00:32 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2016-12-09 21:31:44 +0100 |
commit | e7093d8e19512c357890942f455c632a2089950d (patch) | |
tree | 61138b85a962402f4143cdc0006b9f5419e7099d /setup.py | |
parent | ecc4b1014e126062a5be88142b81500db1dcfad7 (diff) | |
download | watchnews-e7093d8e19512c357890942f455c632a2089950d.tar.gz watchnews-e7093d8e19512c357890942f455c632a2089950d.zip |
update listed dependencies
use >= and reference more recent versions
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -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'] ) |