Slixfeed/setup.py

16 lines
250 B
Python
Raw Normal View History

2023-07-16 17:21:26 +02:00
#!/usr/bin/env python
from distutils.core import setup
setup(
name='slixfeed',
version='1.0',
description='rss through xmpp bot',
install_require=[
'aiohttp',
'slixmpp',
'eliot',
'feedparser'
]
)