mirror of
https://github.com/hrfee/jellyfin-accounts.git
synced 2024-12-22 17:10:11 +00:00
added requirements.txt
This commit is contained in:
parent
690de58e9f
commit
b43f145ac5
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@ test.txt
|
|||||||
data/node_modules/
|
data/node_modules/
|
||||||
*.egg-info/
|
*.egg-info/
|
||||||
pw-reset/
|
pw-reset/
|
||||||
|
jfa/
|
||||||
|
@ -38,6 +38,7 @@ Usually as simple as:
|
|||||||
```
|
```
|
||||||
git clone https://github.com/hrfee/jellyfin-accounts.git
|
git clone https://github.com/hrfee/jellyfin-accounts.git
|
||||||
cd jellyfin-accounts
|
cd jellyfin-accounts
|
||||||
|
pip3 install -r requirements.txt
|
||||||
python3 setup.py install
|
python3 setup.py install
|
||||||
```
|
```
|
||||||
If not, see [install](https://github.com/hrfee/jellyfin-accounts/wiki/Install).
|
If not, see [install](https://github.com/hrfee/jellyfin-accounts/wiki/Install).
|
||||||
|
12
requirements.txt
Normal file
12
requirements.txt
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
pyOpenSSL
|
||||||
|
Flask
|
||||||
|
flask_httpauth
|
||||||
|
requests
|
||||||
|
itsdangerous
|
||||||
|
passlib
|
||||||
|
secrets
|
||||||
|
pytz
|
||||||
|
python-dateutil
|
||||||
|
watchdog
|
||||||
|
configparser
|
||||||
|
waitress
|
2
setup.py
2
setup.py
@ -32,6 +32,7 @@ setup(
|
|||||||
'data/templates/form.html'])],
|
'data/templates/form.html'])],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
'pyOpenSSL',
|
||||||
'Flask',
|
'Flask',
|
||||||
'flask_httpauth',
|
'flask_httpauth',
|
||||||
'requests',
|
'requests',
|
||||||
@ -42,7 +43,6 @@ setup(
|
|||||||
'python-dateutil',
|
'python-dateutil',
|
||||||
'watchdog',
|
'watchdog',
|
||||||
'configparser',
|
'configparser',
|
||||||
'pyOpenSSL',
|
|
||||||
'waitress',
|
'waitress',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user