123456789101112131415161718192021222324 |
- [tool.poetry]
- name = "arcmac"
- version = "0.1.0"
- description = "Simple arcade machine in telegeam"
- authors = ["Milinuri Nirvalen <pentergust@mail.ru>"]
- license = "GPL-3.0-or-later"
- readme = "README.md"
- [tool.poetry.dependencies]
- python = "^3.8"
- aiogram = "^3.2.0"
- mariadb = "^1.1.9"
- loguru = "^0.7.2"
- python-dotenv = "^1.0.0"
- [tool.poetry.group.dev.dependencies]
- icecream = "^2.1.3"
- isort = "^5.13.2"
- ruff = "^0.1.9"
- [build-system]
- requires = ["poetry-core"]
- build-backend = "poetry.core.masonry.api"
|