21 lines
424 B
TOML
21 lines
424 B
TOML
|
|
[project]
|
||
|
|
name = "cvp-backend"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "CVP - Backend API pour la recherche d'emploi intelligente"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
|
||
|
|
[tool.pytest.ini_options]
|
||
|
|
testpaths = ["tests"]
|
||
|
|
asyncio_mode = "auto"
|
||
|
|
|
||
|
|
[tool.ruff]
|
||
|
|
target-version = "py311"
|
||
|
|
line-length = 100
|
||
|
|
|
||
|
|
[tool.ruff.lint]
|
||
|
|
select = ["E", "F", "W", "I", "N", "UP", "ANN", "B", "A", "SIM"]
|
||
|
|
ignore = []
|
||
|
|
|
||
|
|
[tool.ruff.lint.isort]
|
||
|
|
known-first-party = ["app"]
|