pyproject.toml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.2.2"
  6. package-mode = false
  7. [tool.poetry.dependencies]
  8. fastapi = "^0.111.0"
  9. pyjwt = {extras = ["crypto"], version = "^2.6.0"}
  10. python = "^3.11"
  11. python-multipart = "^0.0.9"
  12. sqlalchemy = "^2.0.1"
  13. alembic = "^1.9.2"
  14. passlib = {extras = ["bcrypt"], version = "^1.7.4"}
  15. pydantic = {extras = ["dotenv", "email"], version = "^2.7.1"}
  16. pandas = "2.1.0"
  17. pandera = "0.20.3"
  18. requests = "2.31.0"
  19. pydantic-settings = "^2.2.1"
  20. psycopg2 = "^2.9.9"
  21. [tool.poetry.group.dev.dependencies]
  22. autoflake = "^2.0.1"
  23. coverage = "^7.1.0"
  24. httpx = "^0.23.3"
  25. pytest = "^7.2.1"
  26. pytest-asyncio = "^0.20.3"
  27. uvicorn = {extras = ["standard"], version = "^0.20.0"}
  28. pre-commit = "^3.0.4"
  29. ruff = "^0.4.7"
  30. [build-system]
  31. build-backend = "poetry.core.masonry.api"
  32. requires = ["poetry-core>=1.0.0"]
  33. [tool.pytest.ini_options]
  34. addopts = "-v"
  35. asyncio_mode = "auto"
  36. filterwarnings = []
  37. markers = ["pytest.mark.asyncio"]
  38. minversion = "6.0"
  39. testpaths = ["app/tests"]
  40. [tool.isort]
  41. profile = "black"
  42. [tool.black]
  43. line-length = 100