forked from sch/Slixfeed
16 lines
250 B
Python
16 lines
250 B
Python
|
#!/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'
|
||
|
]
|
||
|
)
|