forked from edsu/feediverse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 785 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name='feediverse',
version='0.2.0',
python_requires='>=3.3',
url='https://github.com/edsu/feediverse',
author='Ed Summers',
author_email='[email protected]',
py_modules=['feediverse', ],
description='Connect an RSS Feed to Mastodon',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['beautifulsoup4',
'feedparser',
'mastodon.py',
'python-dateutil',
'pyyaml',
'certifi',
'urllib3[secure]'],
entry_points={'console_scripts': ['feediverse = feediverse:main']}
)