pyproject.toml (view raw)
1[tool.poetry]
2name = "escarbot"
3version = "0.1.0"
4description = "Earthbound Café's custom delivery bot with other cool utilities built-in."
5authors = ["Andronaco Marco <marco.andronaco@olivetti.com>"]
6readme = "README.md"
7packages = [{include = "escarbot"}]
8
9[tool.poetry.dependencies]
10python = "^3.11"
11python-dotenv = "1.0.0"
12python-telegram-bot = "20.4"
13requests = "^2.31.0"
14
15
16[build-system]
17requires = ["poetry-core"]
18build-backend = "poetry.core.masonry.api"