Skip to content
Snippets Groups Projects
Commit 47f6caef authored by thomaswoehlke's avatar thomaswoehlke
Browse files

* Fixed #123 split RkiBundeslaenderService into two Services, one for...

* Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise
* Fixed #128 add fields from csv to RkiLandkreiseImport
* Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021
* Fixed #140 move WhoImport to RKI in: rk_service_import.py
* Fixed #125 implement RkiLandkreise
* Fixed #126 implement RkiBundeslaenderImport
parent 5c4bc93c
No related branches found
No related tags found
No related merge requests found
Showing
with 16 additions and 18 deletions
...@@ -27,8 +27,10 @@ keywords_list = [ ...@@ -27,8 +27,10 @@ keywords_list = [
requires_setup = [ requires_setup = [
"setuptools==53.0.0", "setuptools==53.0.0",
"pip-licenses==3.3.0",
"wheel==0.36.2", "wheel==0.36.2",
"pip-licenses==3.3.0",
"pip-tools==5.5.0",
"packaging==20.0",
"tokenize-rt>=4.1.0", "tokenize-rt>=4.1.0",
"flask-resources==0.6.0", "flask-resources==0.6.0",
"Flask-PluginKit>=3.6.0", "Flask-PluginKit>=3.6.0",
...@@ -124,20 +126,22 @@ require_install_data_processing = [ ...@@ -124,20 +126,22 @@ require_install_data_processing = [
"StatisticalDiagrams>=20.5", "StatisticalDiagrams>=20.5",
] ]
requires_install = { requires_install = []
"requires_install_minimum": requires_install_minimum,
"requires_install_user_security": requires_install_user_security, requires_install_groups = [
"requires_install_operating": requires_install_operating, requires_install_minimum,
"requires_install_nore_flask": requires_install_nore_flask, requires_install_user_security,
"require_install_data_processing": require_install_data_processing, requires_install_operating,
"all": [] requires_install_nore_flask,
} require_install_data_processing,
]
for reqs in requires_extras.values(): for reqs in requires_extras.values():
requires_extras["all"].extend(reqs) requires_extras["all"].extend(reqs)
for reqs in requires_install.values(): for my_group in requires_install_groups:
requires_install["all"].extend(reqs) for my_item in my_group:
requires_install.append(my_item)
keywords = "" keywords = ""
for kw in keywords_list: for kw in keywords_list:
...@@ -145,15 +149,9 @@ for kw in keywords_list: ...@@ -145,15 +149,9 @@ for kw in keywords_list:
packages = find_packages() packages = find_packages()
# Get the version string. Cannot be done with import!
g = {}
with open(os.path.join("flask_resources", "version.py"), "rt") as fp:
exec(fp.read(), g)
version = g["__version__"]
setup( setup(
name='thomaswoehlke-covid19python', name='thomaswoehlke-covid19python',
version=version, version='0.0.16',
url='ttps://github.com/thomaswoehlke/covid19python.git', url='ttps://github.com/thomaswoehlke/covid19python.git',
license='GNU General Public License v3 (GPLv3)', license='GNU General Public License v3 (GPLv3)',
author='Thomas Woehlke', author='Thomas Woehlke',
......
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment