Add new file

This commit is contained in:
Schimon Jehudah 2023-07-16 15:21:26 +00:00
parent ffea8994ea
commit d60ff7bd5d

15
setup.py Normal file
View file

@ -0,0 +1,15 @@
#!/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'
]
)