pyproject.toml 447 B

12345678910111213141516171819202122
  1. [tool.poetry]
  2. name = "corkboard"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Getty Ritter <samothes@infinitenegativeutility.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.8"
  8. flask = "^1.1.2"
  9. tinydb = "3.15.2"
  10. dataclasses-json = "^0.4.3"
  11. tinyrecord = "^0.1.5"
  12. uwsgi = "^2.0.18"
  13. [tool.poetry.dev-dependencies]
  14. mypy = "^0.770"
  15. black = "^19.10b0"
  16. invoke = "^1.4.1"
  17. [build-system]
  18. requires = ["poetry>=0.12"]
  19. build-backend = "poetry.masonry.api"