forked from MouadBH/coronapy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 1.1 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setup(
name="coronapy-cli",
version="1.4.1",
author="MouadBH",
author_email="mouad123b@gmail.com",
description="A command line tool to fetch worldwide data about Corona Virus",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=['corona', 'covid-19', 'cli', 'corona-cli', 'coronavirus', ' coronavirus-tracking', 'coronavirus-real-time', ' coronavirus-info'],
url="https://github.com/MouadBH/coronapy-cli",
license="MIT",
packages=find_packages(),
package_data={},
install_requires=['Click', 'pyfiglet', 'prettytable', 'yaspin', 'termgraph', 'colorama', 'termcolor'],
entry_points='''
[console_scripts]
coronapy=coronapy.cli:cli
''',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)