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
e949748a
Commit
e949748a
authored
4 years ago
by
Thomas Wöhlke
Browse files
Options
Downloads
Patches
Plain Diff
Default task
parent
f783b5a2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+12
-11
12 additions, 11 deletions
setup.py
with
12 additions
and
11 deletions
setup.py
+
12
−
11
View file @
e949748a
...
@@ -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
"
)
)
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