pyproject.toml 766 B

123456789101112131415161718192021222324252627282930
  1. [tool.poetry]
  2. name = "vanity-bot"
  3. version = "0.1.0"
  4. description = "Telegram bot that replace arxiv.org links with mobile responsive and fancy arxiv-vanity.com links with builtin snippets to telegram chats."
  5. authors = ["metya <metya.tm@gmail.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.9"
  8. aiogram = "^2.10.1"
  9. cchardet = "^2.1.6"
  10. ujson = "^5.4.0"
  11. aiohttp = {extras = ["speedups"], version = "^3.7.4"}
  12. multidict = "^5.0.0"
  13. aiodns = "^2.0.0"
  14. brotlipy = "^0.7.0"
  15. [tool.poetry.dev-dependencies]
  16. pip-chill = "^1.0.0"
  17. pipreqs = "^0.4.10"
  18. commitizen = "^2.4.1"
  19. pre-commit = "^2.10.1"
  20. [tool.commitizen]
  21. name = "cz_conventional_commits"
  22. version = "0.1.0"
  23. tag_format = "$version"
  24. [build-system]
  25. requires = ["poetry-core>=1.0.0"]
  26. build-backend = "poetry.core.masonry.api"