2023-07-21 22:57:14 +01: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 16:16:30 +01:00
|
|
|
python = "^3.11.2"
|
2023-07-21 22:57:14 +01:00
|
|
|
webex-bot = "^0.4.0"
|
2024-04-01 16:36:50 +01:00
|
|
|
pillow = "^10.3.0"
|
2023-07-21 22:57:14 +01:00
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-03-19 12:39:39 +00:00
|
|
|
black = "^24.3.0"
|
2024-03-15 15:28:02 +00:00
|
|
|
coverage = "^7.4.4"
|
2024-02-27 20:39:05 +00:00
|
|
|
pylint = "^3.1.0"
|
2023-07-21 22:57:14 +01:00
|
|
|
pylint-exit = "^1.2.0"
|
2024-03-13 07:44:52 +00:00
|
|
|
pytest = "^8.1.1"
|
2024-03-25 19:23:53 +00:00
|
|
|
pre-commit = "^3.7.0"
|
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"
|