Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
flask-covid19
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas Wöhlke
flask-covid19
Commits
3e8ae95c
Commit
3e8ae95c
authored
4 years ago
by
Thomas Wöhlke
Browse files
Options
Downloads
Patches
Plain Diff
Default task
parent
97d67d9f
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
package-lock.json
+1
-1
1 addition, 1 deletion
package-lock.json
setup.py
+12
-12
12 additions, 12 deletions
setup.py
with
13 additions
and
13 deletions
package-lock.json
+
1
−
1
View file @
3e8ae95c
{
"name"
:
"covid19python
-thomaswoehlke
"
,
"name"
:
"covid19python"
,
"version"
:
"0.0.19"
,
"lockfileVersion"
:
1
}
This diff is collapsed.
Click to expand it.
setup.py
+
12
−
12
View file @
3e8ae95c
...
...
@@ -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
"
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment