diff --git a/package-lock.json b/package-lock.json
index c067a1a007a1815dcee2d6308ce7d6c065f2bfa0..649e74fb9f449ef4ba0c42d77f7db3b8ad989e97 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,5 +1,5 @@
 {
-  "name": "covid19python-thomaswoehlke",
+  "name": "covid19python",
   "version": "0.0.19",
   "lockfileVersion": 1
 }
diff --git a/setup.py b/setup.py
index 1cbfac93b2ceb3bc2eb1f63a4cb16fdba5ba2453..e78c9e9119d42c54ed4997757f8756514d69df90 100644
--- a/setup.py
+++ b/setup.py
@@ -3,10 +3,10 @@ import sys
 
 from setuptools import find_packages, setup
 
-version = '0.0.19'
+version = "0.0.19"
 
-needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
-pytest_runner = ['pytest-runner'] if needs_pytest else []
+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()
@@ -464,13 +464,13 @@ for kw in keywords_list:
 packages = find_packages()
 
 setup(
-    name='covid19python',
+    name="covid19python",
     version=version,
-    url='ttps://github.com/thomaswoehlke/covid19python.git',
-    license='GNU General Public License v3 (GPLv3)',
-    author='Thomas Woehlke',
-    author_email='thomas.woehlke@gmail.com',
-    description='Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.',
+    url="ttps://github.com/thomaswoehlke/covid19python.git",
+    license="GNU General Public License v3 (GPLv3)",
+    author="Thomas Woehlke",
+    author_email="thomas.woehlke@gmail.com",
+    description="Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.",
     classifiers=[
         "Environment :: Web Environment",
         "Intended Audience :: Developers",
@@ -502,9 +502,9 @@ setup(
     setup_requires=requires_setup,
     tests_require=requires_test,
     scripts=[
-        'scripts/script_setup_requirements',
-        'scripts/script_npm_install'
-        'scripts/script_get_python_requirements_from_txt'
+        "scripts/script_setup_requirements",
+        "scripts/script_npm_install",
+        "scripts/script_get_python_requirements_from_txt",
     ],
     python_requires=">= 3.8"
 )