Spaces:
Sleeping
Sleeping
Aurélie GABU commited on
Commit ·
540852e
1
Parent(s): 2b5411a
ci: add depencies file and running pytest without upgrading
Browse files- pyproject.toml +31 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "projet4"
|
| 3 |
+
version = "0.1.0"
|
| 4 |
+
description = ""
|
| 5 |
+
authors = [
|
| 6 |
+
{name = "Diane.Aurélie",email = "aurelie.gabu@gmail.com"}
|
| 7 |
+
]
|
| 8 |
+
readme = "README.md"
|
| 9 |
+
requires-python = "^3.11"
|
| 10 |
+
dependencies = [
|
| 11 |
+
"pandas ==2.2.3",
|
| 12 |
+
"numpy ==1.26.4",
|
| 13 |
+
"scikit-learn ==1.4.2",
|
| 14 |
+
"matplotlib ==3.8.4",
|
| 15 |
+
"seaborn ==0.13.2",
|
| 16 |
+
"scipy ==1.12.0",
|
| 17 |
+
"shap ==0.49.1",
|
| 18 |
+
"xgboost ==2.0.3",
|
| 19 |
+
"optuna ==3.6.1",
|
| 20 |
+
"category-encoders ==2.6.3",
|
| 21 |
+
"catboost ==1.2.7",
|
| 22 |
+
"numba ==0.59.1",
|
| 23 |
+
"llvmlite ==0.42.0",
|
| 24 |
+
"ipykernel>=6.25,<7.0"
|
| 25 |
+
]
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
[build-system]
|
| 29 |
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
| 30 |
+
build-backend = "poetry.core.masonry.api"
|
| 31 |
+
|