From b8f546750ea0b5bc9131d503f9e57857d0360b3a Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Sun, 14 Feb 2021 16:22:07 +0100 Subject: [PATCH] * 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 --- requirements.txt | 4 +++- setup.py | 18 ++++++++++-------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index 26973bb0..96870442 100644 --- a/requirements.txt +++ b/requirements.txt @@ -87,4 +87,6 @@ plantuml2freemind==0.8.2 plantuml-gentools==0.1.2 # #----------------------------------------------------------------- -# \ No newline at end of file +# +flask-resources==0.6.0 +speaklater==1.3 diff --git a/setup.py b/setup.py index ad6600c4..51e1473b 100644 --- a/setup.py +++ b/setup.py @@ -29,16 +29,12 @@ requires_setup = [ "setuptools==53.0.0", "pip-licenses==3.3.0", "wheel==0.36.2", - "npmdownloader>=1.2.1", - "py2puml==0.3.1", - "plantuml-creator == 1.0.7", - "plantuml-markdown == 3.4.2", - "plantuml-wrapper == 0.1.0", - "plantuml2freemind == 0.8.2", - "plantuml-gentools == 0.1.2", + "flask-resources==0.6.0", + "speaklater==1.3", "Flask-PluginKit>=3.6.0", "Flask-ResponseBuilder>=2.0.12", - "Flask-Babel>=2" + "Flask-Babel>=2", + "npmdownloader>=1.2.1" ] requires_test = [ @@ -54,6 +50,12 @@ requires_docs = [ "pallets-sphinx-themes==1.2.3", "sphinxcontrib-plantuml==0.19", "sphinxcontrib-gravizo==0.0.4" + "py2puml==0.3.1", + "plantuml-creator == 1.0.7", + "plantuml-markdown == 3.4.2", + "plantuml-wrapper == 0.1.0", + "plantuml2freemind == 0.8.2", + "plantuml-gentools == 0.1.2" ] dotenv_require = [ -- GitLab