Remove secrets dep

The dependency on 'secrets' has been removed, as I realized that the
cryptographic 'secrets' package is included in python, and the one on
PyPI was related to LDAP. This the issues with python-ldap on some
systems no longer exist.
This commit is contained in:
Harvey Tindall 2020-06-16 20:17:25 +01:00
parent 4372c9d12f
commit 4d6872dc17

View File

@ -31,7 +31,6 @@ A basic account management system for [Jellyfin](https://github.com/jellyfin/jel
* requests * requests
* itsdangerous * itsdangerous
* passlib * passlib
* secrets
* configparser * configparser
* pyOpenSSL * pyOpenSSL
* waitress * waitress
@ -43,10 +42,7 @@ A basic account management system for [Jellyfin](https://github.com/jellyfin/jel
Usually as simple as: Usually as simple as:
``` ```
git clone https://github.com/hrfee/jellyfin-accounts.git pip install jellyfin-accounts
cd jellyfin-accounts
pip3 install pyOpenSSL
python3 setup.py install
``` ```
If not, or if you want to use docker, see [install](https://github.com/hrfee/jellyfin-accounts/wiki/Install). If not, or if you want to use docker, see [install](https://github.com/hrfee/jellyfin-accounts/wiki/Install).