pyproject.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [tool.poetry]
  2. authors = ["clovis jaquin <clovis@jaquin.fr>"]
  3. description = "FastAPI project API that can parse gsheet planning for brass dans la garonne event and manage creating automatic SMS notification for volunteer"
  4. name = "bdlg-2023"
  5. version = "0.1.3-alpha"
  6. [tool.poetry.dependencies]
  7. fastapi = "^0.89.1"
  8. pyjwt = {extras = ["crypto"], version = "^2.6.0"}
  9. python = "^3.11"
  10. python-multipart = ">=0.0.5,<0.0.6"
  11. sqlalchemy = "^2.0.1"
  12. alembic = "^1.9.2"
  13. passlib = {extras = ["bcrypt"], version = "^1.7.4"}
  14. pydantic = {extras = ["dotenv", "email"], version = "^1.10.4"}
  15. [tool.poetry.group.dev.dependencies]
  16. autoflake = "^2.0.1"
  17. black = "^23.1.0"
  18. coverage = "^7.1.0"
  19. flake8 = "^6.0.0"
  20. httpx = "^0.23.3"
  21. isort = "^5.12.0"
  22. pytest = "^7.2.1"
  23. pytest-asyncio = "^0.20.3"
  24. uvicorn = {extras = ["standard"], version = "^0.20.0"}
  25. pre-commit = "^3.0.4"
  26. [build-system]
  27. build-backend = "poetry.core.masonry.api"
  28. requires = ["poetry-core>=1.0.0"]
  29. [tool.pytest.ini_options]
  30. addopts = "-v"
  31. asyncio_mode = "auto"
  32. filterwarnings = []
  33. markers = ["pytest.mark.asyncio"]
  34. minversion = "6.0"
  35. testpaths = ["app/tests"]
  36. [tool.isort]
  37. profile = "black"
  38. [tool.black]
  39. line-length = 100