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"
|
2023-07-21 23:57:14 +02:00
|
|
|
webex-bot = "^0.4.0"
|
2024-04-01 17:36:50 +02:00
|
|
|
pillow = "^10.3.0"
|
2023-07-21 23:57:14 +02:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-04-15 22:08:46 +02:00
|
|
|
black = "^24.4.0"
|
2024-03-15 16:28:02 +01:00
|
|
|
coverage = "^7.4.4"
|
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-03-13 08:44:52 +01:00
|
|
|
pytest = "^8.1.1"
|
2024-03-25 20:23:53 +01:00
|
|
|
pre-commit = "^3.7.0"
|
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"
|