pyproject.toml 503 B

123456789101112131415161718192021222324
  1. [tool.poetry]
  2. name = "arcmac"
  3. version = "0.1.0"
  4. description = "Simple arcade machine in telegeam"
  5. authors = ["Milinuri Nirvalen <pentergust@mail.ru>"]
  6. license = "GPL-3.0-or-later"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = "^3.8"
  10. aiogram = "^3.2.0"
  11. mariadb = "^1.1.9"
  12. loguru = "^0.7.2"
  13. python-dotenv = "^1.0.0"
  14. [tool.poetry.group.dev.dependencies]
  15. icecream = "^2.1.3"
  16. isort = "^5.13.2"
  17. ruff = "^0.1.9"
  18. [build-system]
  19. requires = ["poetry-core"]
  20. build-backend = "poetry.core.masonry.api"