pyproject.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.0-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. pandas = "2.1.0"
  16. requests = "2.31.0"
  17. [tool.poetry.group.dev.dependencies]
  18. autoflake = "^2.0.1"
  19. black = "^23.1.0"
  20. coverage = "^7.1.0"
  21. flake8 = "^6.0.0"
  22. httpx = "^0.23.3"
  23. isort = "^5.12.0"
  24. pytest = "^7.2.1"
  25. pytest-asyncio = "^0.20.3"
  26. uvicorn = {extras = ["standard"], version = "^0.20.0"}
  27. pre-commit = "^3.0.4"
  28. [build-system]
  29. build-backend = "poetry.core.masonry.api"
  30. requires = ["poetry-core>=1.0.0"]
  31. [tool.pytest.ini_options]
  32. addopts = "-v"
  33. asyncio_mode = "auto"
  34. filterwarnings = []
  35. markers = ["pytest.mark.asyncio"]
  36. minversion = "6.0"
  37. testpaths = ["app/tests"]
  38. [tool.isort]
  39. profile = "black"
  40. [tool.black]
  41. line-length = 100