From 4d6872dc171cb7811b356a783c89c78640f5b530 Mon Sep 17 00:00:00 2001 From: Harvey Tindall Date: Tue, 16 Jun 2020 20:17:25 +0100 Subject: [PATCH] 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. --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 2312ce6..3381b66 100644 --- a/README.md +++ b/README.md @@ -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).