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 485B

1234567891011121314151617181920212223242526
  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. fastapi = "^0.101.1"
  11. uvicorn = "^0.23.2"
  12. httpx = "^0.24.1"
  13. [tool.poetry.group.dev.dependencies]
  14. pytest = "^7.4.0"
  15. pytest-cov = "^4.1.0"
  16. black = "^23.7.0"
  17. isort = "^5.12.0"
  18. flake8 = "^6.1.0"
  19. bandit = "^1.7.5"
  20. [build-system]
  21. requires = ["poetry-core"]
  22. build-backend = "poetry.core.masonry.api"