From 621865fad7fcba4ac585267e674763c2016c9ea0 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Fri, 29 Jan 2021 12:19:57 +0100 Subject: [PATCH] work --- etc/TODO.md | 3 +++ requirements.txt | 1 + setup.cfg | 11 ++++++----- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/etc/TODO.md b/etc/TODO.md index 0b0b6bc7..de75116b 100644 --- a/etc/TODO.md +++ b/etc/TODO.md @@ -13,3 +13,6 @@ * 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/ diff --git a/requirements.txt b/requirements.txt index 71aa1c5b..bc04804a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,6 +4,7 @@ setuptools==52.0.0 # Flask==1.1.2 SQLAlchemy==1.3.22 +Flask-Login==0.5.0 # # PostgreSQL # diff --git a/setup.cfg b/setup.cfg index c057207a..fdf4eb6e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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" -- GitLab