-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.64 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.64 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
38
39
40
41
42
43
44
45
46
47
#https://twitter.com/search?q=%20from%3Amz_gov_pl%20since%3A2020-10-01%20until%3A2020-10-02&src=typed_query
# 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 = 'covid19poland',
version = '0.9.0',
author = 'Martin Beneš',
author_email = 'martinbenes1996@gmail.com',
description = 'Web Scraper for Poland COVID19 data.',
long_description = long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
license='MIT',
url = 'https://github.com/martinbenes1996/covid19poland',
download_url = 'https://github.com/martinbenes1996/covid19poland/archive/0.9.0.tar.gz',
keywords = ['2019-nCov', 'poland', 'coronavirus', 'covid-19', 'covid-data', 'covid19-data'],
install_requires=reqs,
package_dir={'': '.'},
package_data={'': ['data/*.json','data/*.csv']},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'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 :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)