-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 1.35 KB
/
setup.py
File metadata and controls
37 lines (35 loc) · 1.35 KB
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
33
34
35
36
37
import setuptools
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setuptools.setup(
name = 'covid19dh',
version = '0.1.7',
author = 'Covid-19 Data Hub',
author_email = 'martinbenes1996@gmail.com',
description = 'Unified data hub for a better understanding of COVID-19 https://covid19datahub.io',
long_description = long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license='GPL',
url = 'https://www.covid19datahub.io/',
download_url = 'https://github.com/covid19datahub/Python/archive/0.1.7.tar.gz',
keywords = ['2019-nCov', 'coronavirus', 'covid-19', 'covid-data', 'covid19-data'],
install_requires=[],
package_dir={'': '.'},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Other Audience',
'Topic :: Database',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)