This commit is contained in:
Ed Summers
2018-06-09 12:53:44 -04:00
commit bdc72c289f
5 changed files with 210 additions and 0 deletions

18
setup.py Normal file
View File

@ -0,0 +1,18 @@
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name='feediverse',
version='0.0.1',
url='https://github.com/edsu/feediverse',
author='Ed Summers',
author_email='ehs@pobox.com',
py_modules=['feediverse', ],
description='Connect an RSS Feed to Mastodon',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['feedparser', 'mastodon.py', 'python-dateutil', 'pyyaml'],
entry_points={'console_scripts': ['feediverse = feediverse:main']}
)