pyproject.toml 411 B

1234567891011121314151617181920
  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. [tool.poetry.dev-dependencies]
  13. mypy = "^0.770"
  14. black = "^19.10b0"
  15. [build-system]
  16. requires = ["poetry>=0.12"]
  17. build-backend = "poetry.masonry.api"