pyproject.toml (view raw)
1[tool.poetry]
2name = "python-meme-bot"
3version = "0.1.0"
4description = "Telegram Bot that uses PIL to compute light image processing."
5authors = ["BiRabittoh <andronacomarco@gmail.com>"]
6license = "MIT"
7readme = "README.md"
8
9[tool.poetry.dependencies]
10python = "^3.12.2"
11pillow = "^10.3.0"
12python-dotenv = "^1.0.1"
13requests = "^2.32.3"
14python-telegram-bot = { version = "21.2", extras = ["job-queue"] }
15
16
17[build-system]
18requires = ["poetry-core"]
19build-backend = "poetry.core.masonry.api"