forked from introduction-to-python-bsuir-2019/PythonHomework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 609 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 609 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='rss-reader',
version='4.0',
description='Pure Python command-line RSS reader',
long_description=long_description,
url='https://github.com/yanaShcherbich/PythonHomework',
author='Yana Shcherbich',
author_email='vilikdf@gmail.com',
packages=find_packages(),
python_requires='>=3.6',
install_requires=['feedparser', 'bs4', 'dateparser', 'requests', 'lxml'],
entry_points={
'console_scripts': ['rss-reader=rss.rss_reader:run'],
}
)