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

Default task

parent f783b5a2
No related branches found
No related tags found
No related merge requests found
...@@ -3,12 +3,13 @@ import sys ...@@ -3,12 +3,13 @@ import sys
from setuptools import find_packages, setup from setuptools import find_packages, setup
version = "0.0.19" version = '0.0.19'
needs_pytest = {"pytest", "test", "ptr"}.intersection(sys.argv) needs_pytest = {'pytest', '"test', '"ptr'}.intersection(sys.argv)
pytest_runner = ["pytest-runner"] if needs_pytest else [] pytest_runner = ["pytest-runner"] if needs_pytest else []
readme = open("README.md").read() readme = open("README.md").read()
history = open("BACKLOG.md").read()
keywords_list = [ keywords_list = [
"virus", "virus",
...@@ -459,13 +460,13 @@ for kw in keywords_list: ...@@ -459,13 +460,13 @@ for kw in keywords_list:
packages = find_packages() packages = find_packages()
setup( setup(
name="covid19python", name='covid19python',
version=version, version=version,
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',
author_email="thomas.woehlke@gmail.com", author_email='thomas.woehlke@gmail.com',
description="Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.", description='Covid19 Data Aggregation - also a Project to learn Python Flask, SQLAlchemy, Celery et al.',
classifiers=[ classifiers=[
"Environment :: Web Environment", "Environment :: Web Environment",
"Intended Audience :: Developers", "Intended Audience :: Developers",
...@@ -497,9 +498,9 @@ setup( ...@@ -497,9 +498,9 @@ setup(
setup_requires=requires_setup, setup_requires=requires_setup,
tests_require=requires_test, tests_require=requires_test,
scripts=[ scripts=[
"scripts/script_setup_requirements", 'scripts'+os.sep+'script_setup_requirements',
"scripts/script_npm_install", 'scripts'+os.sep+'script_npm_install',
"scripts/script_get_python_requirements_from_txt", 'scripts'+os.sep+'script_get_python_requirements_from_txt',
], ],
python_requires=">= 3.8" 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