Skip to content
Snippets Groups Projects
Commit 7b89eed0 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 c961783d
No related branches found
No related tags found
No related merge requests found
......@@ -90,3 +90,4 @@ plantuml-gentools==0.1.2
#
flask-resources==0.6.0
speaklater==1.3
pytest-runner==5.3.0
import os
import sys
from setuptools import find_packages, setup
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
readme = open("README.md").read()
history = open("BACKLOG.md").read()
......@@ -431,7 +434,7 @@ requires_install = [
"xmltodict==0.12.0",
"yarl==1.6.3",
"zipp==0.6.0"
]
] + pytest_runner
requires_install_groups = [
requires_install_minimum,
......
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