forked from covid19datahub/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.45 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
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/python
# requirements
try:
with open('requirements.txt') as f:
reqs = f.read().splitlines()
except:
reqs = []
import setuptools
with open("README.md", "r", encoding="UTF-8") as fh:
long_description = fh.read()
setuptools.setup(
name = 'covid19dh',
version = '2.3.0',
author = 'Martin Beneš',
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(),
url = 'https://www.covid19datahub.io',
download_url = 'https://github.com/covid19datahub/Python/archive/2.3.0.tar.gz',
keywords = ['2019-nCov', 'coronavirus', 'covid-19', 'covid-data', 'covid19-data'],
install_requires=reqs,
package_dir={'': '.'},
classifiers=[
'Development Status :: 5 - Production/Stable',
'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 :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)