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
1 changed files with 1 additions and 5 deletions

View File

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