-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 819 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 819 Bytes
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
[project]
name = "taxi-duration-prediction"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"fastapi>=0.115.12",
"uvicorn>=0.34.2",
"pydantic>=2.11.3",
"pydantic-settings>=2.9.1",
"loguru>=0.7.2",
"numpy>=2.2.5",
"pandas>=2.2.3",
"scikit-learn>=1.6.1",
"lightgbm>=4.6.0",
"xgboost>=3.0.0",
"catboost>=1.2.8",
"requests>=2.32.3",
"mlflow>=2.22.0",
"matplotlib>=3.10.1",
"pyarrow>=19.0.1",
"fastparquet>=2024.11.0",
"pytest>=8.3.5",
"pytest-cov>=4.1.0",
"coverage>=7.4.0",
"mangum>=0.19.0",
"locust>=2.37.14",
"ruff>=0.12.4",
"prometheus-client>=0.22.1",
"evidently>=0.7.21",
]
[project.optional-dependencies]
dev = [
"ipykernel>=6.29.5"
]