Add support for threads

This commit is contained in:
Astra 2024-09-03 18:28:08 +01:00
parent 3d0c3cb1c6
commit d6859ea6b8
2 changed files with 14 additions and 4 deletions

View file

@ -35,8 +35,8 @@ def main():
],
author="Dídac Sabatés",
author_email="sabatesduran@gmail.com",
url="https://github.com/sabatesduran/pibooth-telegram-upload",
download_url="https://github.com/sabatesduran/pibooth-telegram-upload/archive/{}.tar.gz".format(
url="https://git.zio.sh/astra/pibooth-telegram-upload",
download_url="https://git.zio.sh/astra/pibooth-telegram-upload/archive/{}.tar.gz".format(
plugin.__version__
),
license="GPLv3",
@ -44,7 +44,7 @@ def main():
keywords=["Raspberry Pi", "camera", "photobooth", "telegram", "chat", "bot", "channel"],
py_modules=["pibooth_telegram_upload"],
python_requires=">=3.6",
install_requires=["pibooth>=2.0.0", "python-telegram-bot==13.12"],
install_requires=["pibooth>=2.0.0", "python-telegram-bot==13.15"],
zip_safe=False, # Don't install the lib as an .egg zipfile
entry_points={"pibooth": ["pibooth_telegram_upload = pibooth_telegram_upload"]},
)