Skip to content
Snippets Groups Projects
Commit 665b9874 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

Merge remote-tracking branch 'origin/main' into main

parents df0f6ea5 8cc49ac4
No related branches found
No related tags found
No related merge requests found
......@@ -13,3 +13,7 @@
* https://setuptools.readthedocs.io/en/latest/userguide/dependency_management.html
* https://setuptools.readthedocs.io/en/latest/userguide/declarative_config.html
* https://setuptools.readthedocs.io/en/latest/userguide/quickstart.html#basic-use
### Flask-Login
* https://flask-login.readthedocs.io/en/latest/
* https://riptutorial.com/flask/example/28112/using-flask-login-extension
setuptools==52.0.0
#
# Flask
#
Flask==1.1.2
Flask-SQLAlchemy==2.4.4
Flask-Cors==3.0.10
Flask-Login==0.5.0
SQLAlchemy==1.3.22
#
# PostgreSQL
#
psycopg2==2.8.6
#
# Download
#
wget==3.2
celery[redis]==5.0.5
#
......@@ -20,4 +14,4 @@ celery[redis]==5.0.5
#pyecharts-extras==0.0.5
#tokenize-rt==4.0.0
#numpy==1.19.5
#pandas==1.2.1
\ No newline at end of file
#pandas==1.2.1
......@@ -8,9 +8,10 @@ packages =
app_worker
install_requires =
requests
Flask == 1.1.2
SQLAlchemy == 1.3.22
psycopg2 == 2.8.6
wget == 3.2
celery[redis] == 5.0.5
Flask >= 1.1.2
SQLAlchemy >= 1.3.22
Flask-Login >= 0.5.0
psycopg2 >= 2.8.6
wget >= 3.2
celery[redis] >= 5.0.5
importlib; python_version >= "3.7"
from setuptools import setup, find_packages
setup(
name='app',
name='covid19',
version='0.0.13',
packages=find_packages(),
url='https://github.com/thomaswoehlke/covid19python',
......
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