From 37e82e96489715a3463dbadccacf47148a1705c0 Mon Sep 17 00:00:00 2001 From: Markus Hauschild Date: Thu, 7 Nov 2019 22:13:51 +0100 Subject: [PATCH] Update README, add requirements file --- README.md | 10 +++++----- requirements.txt | 5 +++++ 2 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 requirements.txt diff --git a/README.md b/README.md index 0f4f373..cbaae65 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,15 @@ ## Overview -TBA +This Directory Self-Service is intended as a portal that allow Users to change their LDAP passwords and also supports the creations of new users based on a simple template. ## Requirements +* Flask >= 1.0.0 +* Flask-WTF >= 0.14 * passlib >= 1.7.0 -* flask >= 0.12.1 -* flask-wtf >= 0.12 -* pyldap >= 2.4.25 -* redis >= 2.10.5 +* python-ldap >= 3.1.0 +* redis >= 3.1.0 ## uWSGI diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..f80b246 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +Flask>=1.0.0 +Flask-WTF>=0.14.0 +passlib>=1.7.0 +python-ldap>=3.1.0 +redis>=3.1.0