2023-07-21 23:57:14 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "webexmemebot"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Webex-based meme generation bot using memegen.link."
|
|
|
|
authors = ["luketainton"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-24 17:16:30 +02:00
|
|
|
python = "^3.11.2"
|
2024-04-26 17:39:30 +02:00
|
|
|
webex-bot = "^0.5.1"
|
2024-04-01 17:36:50 +02:00
|
|
|
pillow = "^10.3.0"
|
2024-06-10 18:06:02 +02:00
|
|
|
sentry-sdk = "^2.5.1"
|
2023-07-21 23:57:14 +02:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-04-26 17:46:31 +02:00
|
|
|
black = "^24.4.2"
|
2024-05-28 17:49:25 +02:00
|
|
|
coverage = "^7.5.3"
|
2024-02-27 21:39:05 +01:00
|
|
|
pylint = "^3.1.0"
|
2023-07-21 23:57:14 +02:00
|
|
|
pylint-exit = "^1.2.0"
|
2024-06-08 13:42:50 +02:00
|
|
|
pytest = "^8.2.2"
|
2024-05-13 17:26:51 +02:00
|
|
|
pre-commit = "^3.7.1"
|
2023-07-21 23:57:14 +02:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2023-12-14 21:55:17 +01:00
|
|
|
meme = "app.main:main"
|