2023-07-21 23:57:14 +02:00
|
|
|
[tool.poetry]
|
|
|
|
name = "webexmemebot"
|
2024-11-28 21:54:12 +01:00
|
|
|
version = "0.0.0" # Version is tracked by GitHub Releases
|
2023-07-21 23:57:14 +02:00
|
|
|
description = "Webex-based meme generation bot using memegen.link."
|
|
|
|
authors = ["luketainton"]
|
|
|
|
readme = "README.md"
|
2024-11-28 21:54:12 +01:00
|
|
|
package-mode = false
|
2023-07-21 23:57:14 +02:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-24 17:16:30 +02:00
|
|
|
python = "^3.11.2"
|
2024-08-21 17:20:35 +02:00
|
|
|
webex-bot = "^0.5.2"
|
2024-10-15 17:55:32 +02:00
|
|
|
pillow = "^11.0.0"
|
2025-01-02 18:07:52 +01:00
|
|
|
astroid = "<=3.3.8"
|
2023-07-21 23:57:14 +02:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-10-08 17:32:24 +02:00
|
|
|
black = "^24.10.0"
|
2024-12-27 16:29:20 +01:00
|
|
|
coverage = "^7.6.10"
|
2024-11-28 21:54:12 +01:00
|
|
|
isort = "^5.13.2"
|
2025-01-01 06:01:51 +01:00
|
|
|
pylint = "^3.3.2"
|
2023-07-21 23:57:14 +02:00
|
|
|
pylint-exit = "^1.2.0"
|
2024-12-02 20:11:02 +01:00
|
|
|
pytest = "^8.3.4"
|
2024-10-08 18:57:48 +02:00
|
|
|
pre-commit = "^4.0.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"
|