forked from Kamaropoulos/COVID19Py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.2 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="COVID19Py", # Replace with your own username
version="0.3.0",
author="Konstantinos Kamaropoulos",
author_email="[email protected]",
description="A tiny Python package for easy access to up-to-date Coronavirus (COVID-19, SARS-CoV-2) cases data.",
license = "GPLv3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Kamaropoulos/covid19py",
packages=["COVID19Py"],
keywords = ['covid19', 'coronavirus', 'api', 'covid-19', 'wrapper'],
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: GNU Affero General Public License v3',
"Operating System :: OS Independent",
],
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
)