Serverless Apps with FastAPI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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"