2023-07-21 22:57:14 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "webexmemebot"
|
2024-11-28 20:54:12 +00:00
|
|
|
version = "0.0.0" # Version is tracked by GitHub Releases
|
2023-07-21 22:57:14 +01:00
|
|
|
description = "Webex-based meme generation bot using memegen.link."
|
|
|
|
authors = ["luketainton"]
|
|
|
|
readme = "README.md"
|
2024-11-28 20:54:12 +00:00
|
|
|
package-mode = false
|
2023-07-21 22:57:14 +01:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-07-24 16:16:30 +01:00
|
|
|
python = "^3.11.2"
|
2024-08-21 15:20:35 +00:00
|
|
|
webex-bot = "^0.5.2"
|
2024-10-15 15:55:32 +00:00
|
|
|
pillow = "^11.0.0"
|
2025-01-01 05:01:51 +00:00
|
|
|
astroid = "<=3.3.6"
|
2023-07-21 22:57:14 +01:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-10-08 15:32:24 +00:00
|
|
|
black = "^24.10.0"
|
2024-12-27 15:29:20 +00:00
|
|
|
coverage = "^7.6.10"
|
2024-11-28 20:54:12 +00:00
|
|
|
isort = "^5.13.2"
|
2025-01-01 05:01:51 +00:00
|
|
|
pylint = "^3.3.2"
|
2023-07-21 22:57:14 +01:00
|
|
|
pylint-exit = "^1.2.0"
|
2024-12-02 19:11:02 +00:00
|
|
|
pytest = "^8.3.4"
|
2024-10-08 16:57:48 +00:00
|
|
|
pre-commit = "^4.0.1"
|
2023-07-21 22:57:14 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2023-12-14 20:55:17 +00:00
|
|
|
meme = "app.main:main"
|