add missing pyOpenSSL dep

This commit is contained in:
Harvey Tindall 2020-04-13 14:26:40 +01:00
parent 5725bbf45d
commit 90cdfe1ccc
2 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,7 @@ A basic account management system for [Jellyfin](https://github.com/jellyfin/jel
* passlib
* secrets
* configparser
* pyOpenSSL
* waitress
* pytz
* dateutil

View File

@ -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',
],
)