pyproject.toml 784 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. logzero = "^1.5.0"
  10. cchardet = "^2.1.6"
  11. ujson = "^4.0.1"
  12. aiohttp = {extras = ["speedups"], version = "^3.6.3"}
  13. multidict = "^5.0.0"
  14. aiodns = "^2.0.0"
  15. brotlipy = "^0.7.0"
  16. [tool.poetry.dev-dependencies]
  17. pip-chill = "^1.0.0"
  18. pipreqs = "^0.4.10"
  19. commitizen = "^2.4.1"
  20. pre-commit = "^2.10.1"
  21. [tool.commitizen]
  22. name = "cz_conventional_commits"
  23. version = "0.1.0"
  24. tag_format = "$version"
  25. [build-system]
  26. requires = ["poetry-core>=1.0.0"]
  27. build-backend = "poetry.core.masonry.api"