#!/usr/bin/env python3 from distutils.core import setup setup(name='watchnews', version='0.0.1', description='RSS Feed watcher tools', author='Yves Fischer', author_email='yvesf+watchnews@xapek.org', 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'] )