added requirements.txt

This commit is contained in:
Harvey Tindall 2020-04-15 10:58:35 +01:00
parent 690de58e9f
commit b43f145ac5
4 changed files with 15 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,3 +7,4 @@ test.txt
data/node_modules/
*.egg-info/
pw-reset/
jfa/

View File

@ -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).

12
requirements.txt Normal file
View File

@ -0,0 +1,12 @@
pyOpenSSL
Flask
flask_httpauth
requests
itsdangerous
passlib
secrets
pytz
python-dateutil
watchdog
configparser
waitress

View File

@ -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',
],
)