| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- [tool.poetry]
- authors = ["clovis jaquin <clovis@jaquin.fr>"]
- description = "FastAPI project that can parse gsheet planning for brass dans la garonne event and manage creating automatic SMS notification for volunteer"
- name = "bdlg-2023"
- version = "0.2.2"
- package-mode = false
- [tool.poetry.dependencies]
- fastapi = "^0.111.0"
- pyjwt = {extras = ["crypto"], version = "^2.6.0"}
- python = "^3.11"
- python-multipart = "^0.0.9"
- sqlalchemy = "^2.0.1"
- alembic = "^1.9.2"
- numpy = '<2.0.0'
- passlib = {extras = ["bcrypt"], version = "^1.7.4"}
- pydantic = {extras = ["dotenv", "email"], version = "^2.7.1"}
- pandas = "2.1.0"
- pandera = "0.20.3"
- requests = "2.31.0"
- pydantic-settings = "^2.2.1"
- psycopg2 = "^2.9.9"
- [tool.poetry.group.dev.dependencies]
- autoflake = "^2.0.1"
- coverage = "^7.1.0"
- httpx = "^0.23.3"
- pytest = "^7.2.1"
- pytest-asyncio = "^0.20.3"
- uvicorn = {extras = ["standard"], version = "^0.20.0"}
- pre-commit = "^3.0.4"
- ruff = "^0.4.7"
- [build-system]
- build-backend = "poetry.core.masonry.api"
- requires = ["poetry-core>=1.0.0"]
- [tool.pytest.ini_options]
- addopts = "-v"
- asyncio_mode = "auto"
- filterwarnings = []
- markers = ["pytest.mark.asyncio"]
- minversion = "6.0"
- testpaths = ["app/tests"]
- [tool.isort]
- profile = "black"
- [tool.black]
- line-length = 100
|