pyproject.toml 552 B

12345678910111213141516171819202122232425262728
  1. [tool.poetry]
  2. name = "baba-yaga"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Getty Ritter <gettylefou@gmail.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. flask = "^1.1.2"
  9. pystache = "^0.5.4"
  10. peewee = "^3.13.2"
  11. passlib = "^1.7.2"
  12. itsdangerous = "^1.1.0"
  13. mistune = "2.0.0a4"
  14. python-slugify = "^4.0.0"
  15. tinydb = "^3.15.2"
  16. flask-accept = "^0.0.6"
  17. [tool.poetry.dev-dependencies]
  18. mypy = "^0.770"
  19. black = "^19.10b0"
  20. invoke = "^1.4.1"
  21. pytest = "^5.4.1"
  22. uwsgi = "^2.0.18"
  23. [build-system]
  24. requires = ["poetry>=0.12"]
  25. build-backend = "poetry.masonry.api"