Spaces:
Sleeping
Sleeping
File size: 647 Bytes
e348dc0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
[project]
name = "classification-informations"
version = "0.1.0"
description = "Project Déployez un modèle de Machine Learning"
authors = [
{ name = "Ksenia Dautel" }
]
readme = "README.md"
requires-python = ">=3.11,<3.14"
dependencies = [
"pandas>=2.2",
"scikit-learn==1.7.2",
"imbalanced-learn>=0.14.0",
"fastapi>=0.115",
"uvicorn>=0.38",
"huggingface_hub>=0.24",
"joblib>=1.4",
"pydantic>=2.8", # FastAPI v0.115 uses Pydantic v2
"sqlalchemy>=2.0.45",
"psycopg2-binary>=2.9"
]
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-cov>=5.0.0",
"shap>=0.49.1"
]
[tool.pytest.ini_options]
pythonpath = ["."]
|