pyproject.toml 693 B

123456789101112131415161718192021222324252627282930313233343536
  1. [tool.black]
  2. extend-exclude = "loaded_modules"
  3. preview = true
  4. [tool.poetry]
  5. name = "hikka"
  6. version = "1.6.4"
  7. description = "Telegram userbot focused on developer convenience"
  8. authors = ["hikariatama <me@hikariatama.ru>"]
  9. license = "GNU AGPLv3"
  10. readme = "README.md"
  11. [tool.poetry.dependencies]
  12. python = "^3.8"
  13. aiofile = "3.8.1"
  14. gitpython = "3.1.27"
  15. meval = "2.5"
  16. aiohttp-jinja2 = "1.5"
  17. aiohttp = "3.8.3"
  18. jinja2 = "3.0.3"
  19. requests = "2.27.1"
  20. aiogram = "2.19"
  21. grapheme = "0.6.0"
  22. emoji = "2.1.0"
  23. werkzeug = "2.2.2"
  24. psutil = "5.9.4"
  25. tgcrypto = "1.2.5"
  26. hikka-tl-new = "2.0.8"
  27. ruamel-yaml = "0.17.21"
  28. rsa = "4.9"
  29. [build-system]
  30. requires = ["poetry-core"]
  31. build-backend = "poetry.core.masonry.api"