summaryrefslogtreecommitdiff
path: root/setup.py
blob: 15af6142fdbb05ae0afe7ad2608b0293ab8bf7d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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.8.5',
                        'feedparser>=5.2.1',
                        'newspaper3k>=0.1.7',
                        'Flask>=0.10.0',
                        'll-xist>=5.22.1']
      )