mirror of
https://github.com/YunoHost-Apps/epicyon_ynh.git
synced 2024-09-03 18:36:08 +02:00
29 lines
830 B
Bash
29 lines
830 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
#=================================================
|
||
|
# COMMON VARIABLES
|
||
|
#=================================================
|
||
|
|
||
|
# dependencies used by the app
|
||
|
pkg_dependencies="python3-socks imagemagick \
|
||
|
python3-setuptools \
|
||
|
python3-cryptography \
|
||
|
python3-dateutil \
|
||
|
python3-idna python3-requests \
|
||
|
python3-django-timezone-field \
|
||
|
libimage-exiftool-perl python3-flake8 \
|
||
|
python3-pyqrcode python3-png python3-bandit
|
||
|
"
|
||
|
|
||
|
#=================================================
|
||
|
# PERSONAL HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
#=================================================
|
||
|
# EXPERIMENTAL HELPERS
|
||
|
#=================================================
|
||
|
|
||
|
#=================================================
|
||
|
# FUTURE OFFICIAL HELPERS
|
||
|
#=================================================
|