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 (28 loc) · 707 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 707 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
import os
from setuptools import find_packages, setup
def read(file_name):
with open(os.path.join(os.path.dirname(__file__), file_name)) as file:
return file.read()
setup(
name="rss_reader",
version="4.0",
author="Maya Voyshnis",
author_email="vvvoyshnism@gmail.com",
description='Python RSS Parser',
# long_description=open('README.txt').read(),
packages=find_packages(),
install_requires=[
"wheel",
"setuptools",
"argparse",
"requests",
"beautifulsoup4",
"python-dateutil",
"loguru"
],
entry_points={
'console_scripts': [
'rss_reader=rss_reader.main:main'
],
}
)