Skip to content
Snippets Groups Projects
Commit 3e8ae95c authored by Thomas Wöhlke's avatar Thomas Wöhlke :alien:
Browse files

Default task

parent 97d67d9f
No related branches found
No related tags found
No related merge requests found
{
"name": "covid19python-thomaswoehlke",
"name": "covid19python",
"version": "0.0.19",
"lockfileVersion": 1
}
......@@ -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"
)
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