diff --git a/.gitignore b/.gitignore index d50c9ad..07e17fa 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ test.txt data/node_modules/ *.egg-info/ pw-reset/ +jfa/ diff --git a/README.md b/README.md index 16442dd..222c38e 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,7 @@ Usually as simple as: ``` git clone https://github.com/hrfee/jellyfin-accounts.git cd jellyfin-accounts +pip3 install -r requirements.txt python3 setup.py install ``` If not, see [install](https://github.com/hrfee/jellyfin-accounts/wiki/Install). diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a9fa3e2 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,12 @@ +pyOpenSSL +Flask +flask_httpauth +requests +itsdangerous +passlib +secrets +pytz +python-dateutil +watchdog +configparser +waitress diff --git a/setup.py b/setup.py index 49fff29..6eb4fe9 100644 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ setup( 'data/templates/form.html'])], zip_safe=False, install_requires=[ + 'pyOpenSSL', 'Flask', 'flask_httpauth', 'requests', @@ -42,7 +43,6 @@ setup( 'python-dateutil', 'watchdog', 'configparser', - 'pyOpenSSL', 'waitress', ], )