Serverless Apps with FastAPI
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pyproject.toml 426B

1234567891011121314151617181920212223
  1. [tool.poetry]
  2. name = "tasks-api"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Bosko"]
  6. readme = "README.md"
  7. packages = [{include = "tasks_api"}]
  8. [tool.poetry.dependencies]
  9. python = "^3.9"
  10. [tool.poetry.group.dev.dependencies]
  11. pytest = "^7.4.0"
  12. pytest-cov = "^4.1.0"
  13. black = "^23.7.0"
  14. isort = "^5.12.0"
  15. flake8 = "^6.1.0"
  16. bandit = "^1.7.5"
  17. [build-system]
  18. requires = ["poetry-core"]
  19. build-backend = "poetry.core.masonry.api"