forked from E-P-T/Homework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1022 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 1022 Bytes
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
26
27
28
29
30
from setuptools import setup, find_packages
setup(
name="rss_reader",
version="1.4.0",
description="Simple RSS-reader for console use.",
author="Farrukh Nurmatov",
packages=find_packages(),
install_requires=["beautifulsoup4>=4.11.1",
"bs4>=0.0.1",
"certifi>=2022.6.15",
"charset-normalizer>=2.0.12",
"EbookLib>=0.17.1",
"idna>=3.3",
"Jinja2>=3.1.2",
"lxml>=4.9.0",
"MarkupSafe>=2.1.1",
"Pillow>=9.1.1",
"python-dateutil>=2.8.2",
"requests>=2.28.0",
"six>=1.16.0",
"soupsieve>=2.3.2.post1",
"urllib3>=1.26.9"
],
python_requires=">=3.9",
entry_points={
'console_scripts':
['rss_reader = '
'rss_reader.rss_reader:main', ]}
)