File size: 1,192 Bytes
3d9a801
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2c5ba72
3d9a801
 
 
 
 
 
 
2c5ba72
 
3d9a801
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "projet_05"
version = "0.0.1"
description = "D\u00e9ployez un mod\u00e8le de Machine Learning"
authors = [
  { name = "St\u00e9phane Manet" },
]
license = { file = "LICENSE" }
readme = "README.md"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License"
]
dependencies = [
    "loguru",
    "mkdocs",
    "pip",
    "pytest",
    "python-dotenv",
    "ruff",
    "tqdm",
    "typer",
    "imbalanced-learn (>=0.14.0,<0.15.0)",
    "scikit-learn (>=1.4.2,<2.0.0)",
    "matplotlib (>=3.10.7,<4.0.0)",
    "numpy (>=2.3.4,<3.0.0)",
    "pandas (>=2.3.3,<3.0.0)",
    "pyyaml (>=6.0.3,<7.0.0)",
    "scipy (>=1.16.3,<2.0.0)",
    "seaborn (>=0.13.2,<0.14.0)",
    "shap (>=0.49.1,<0.50.0)",
    "gradio (>=5.49.1,<6.0.0)",
    "joblib (>=1.4.2,<2.0.0)"
]

requires-python = ">=3.11,<3.13"


[tool.ruff]
line-length = 99
src = ["projet_05"]
include = ["pyproject.toml", "projet_05/**/*.py"]

[tool.ruff.lint]
extend-select = ["I"]  # Add import sorting

[tool.ruff.lint.isort]
known-first-party = ["projet_05"]
force-sort-within-sections = true