-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1010 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
26
27
28
29
30
31
32
# Author: Andrii Malchyk
# mail: [email protected]
# Licensed under the MIT License
# Copyright (c) 2022.
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.readlines()
with open('README.md') as f:
readme = f.read()
setup(name='rss_reader',
version='4.0',
description='Pure Python command-line RSS reader',
long_description=readme,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
url='https://git.epam.com/andrii_malchyk/rss_reader',
author='Andrii Malchyk',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
data_files=[('font', ['rss_reader/fonts/DejaVuSansCondensed.ttf'])],
entry_points={
'console_scripts': ['rss_reader=rss_reader.rss_reader:main']
},
install_requires=requirements,
zip_safe=False)