mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-12-22 17:10:11 +00:00
add missing pyOpenSSL dep
This commit is contained in:
parent
5725bbf45d
commit
90cdfe1ccc
@ -27,6 +27,7 @@ A basic account management system for [Jellyfin](https://github.com/jellyfin/jel
|
|||||||
* passlib
|
* passlib
|
||||||
* secrets
|
* secrets
|
||||||
* configparser
|
* configparser
|
||||||
|
* pyOpenSSL
|
||||||
* waitress
|
* waitress
|
||||||
* pytz
|
* pytz
|
||||||
* dateutil
|
* dateutil
|
||||||
|
3
setup.py
3
setup.py
@ -32,13 +32,14 @@ setup(
|
|||||||
'data/templates/form.html'])],
|
'data/templates/form.html'])],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'flask',
|
'Flask',
|
||||||
'flask_httpauth',
|
'flask_httpauth',
|
||||||
'requests',
|
'requests',
|
||||||
'itsdangerous',
|
'itsdangerous',
|
||||||
'passlib',
|
'passlib',
|
||||||
'secrets',
|
'secrets',
|
||||||
'configparser',
|
'configparser',
|
||||||
|
'pyOpenSSL',
|
||||||
'waitress',
|
'waitress',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user