From 90cdfe1ccca2315540fb14ee81b27268246e5791 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Mon, 13 Apr 2020 14:26:40 +0100 Subject: [PATCH] add missing pyOpenSSL dep --- README.md | 1 + setup.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a79727..388579a 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ A basic account management system for [Jellyfin](https://github.com/jellyfin/jel * passlib * secrets * configparser +* pyOpenSSL * waitress * pytz * dateutil diff --git a/setup.py b/setup.py index 120b4b8..2c725ca 100644 --- a/setup.py +++ b/setup.py @@ -32,13 +32,14 @@ setup( 'data/templates/form.html'])], zip_safe=False, install_requires=[ - 'flask', + 'Flask', 'flask_httpauth', 'requests', 'itsdangerous', 'passlib', 'secrets', 'configparser', + 'pyOpenSSL', 'waitress', ], )