Spaces:
Sleeping
Sleeping
marintosti12 commited on
Commit ·
1f8244a
1
Parent(s): ad646e1
fix(project) : ajout d'un exclude pour ipynb
Browse files- pyproject.toml +7 -0
pyproject.toml
CHANGED
|
@@ -14,3 +14,10 @@ uvicorn = "^0.35.0"
|
|
| 14 |
[build-system]
|
| 15 |
requires = ["poetry-core"]
|
| 16 |
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
[build-system]
|
| 15 |
requires = ["poetry-core"]
|
| 16 |
build-backend = "poetry.core.masonry.api"
|
| 17 |
+
|
| 18 |
+
[tool.ruff]
|
| 19 |
+
target-version = "py312"
|
| 20 |
+
line-length = 100
|
| 21 |
+
extend-exclude = [
|
| 22 |
+
"notebook/*.ipynb",
|
| 23 |
+
]
|