-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (66 loc) · 1.44 KB
/
pyproject.toml
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "mlkit"
version = "0.1.0"
description = "A toolkit for machine learning development and deployment"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"onnxconverter-common>=1.13.0",
]
[project.optional-dependencies]
registry = [
"fastapi>=0.115.4",
"minio>=7.2.10",
"pydantic-settings[yaml]>=2.6.0",
"pymongo>=4.10.1",
"python-multipart>=0.0.16",
"requests>=2.32.3",
"uvicorn>=0.32.0",
]
mlkit = [
"feast>=0.41.3",
"lightgbm>=4.5.0",
"mlflow>=2.17.1",
"omegaconf>=2.3.0",
"onnxconverter-common>=1.13.0",
"onnxmltools>=1.12.0",
"pandas>=2.2.3",
"polars>=1.12.0",
"prefect>=3.0.11",
"redis>=5.2.0",
"scikit-learn>=1.5.2",
"xgboost>=2.1.2",
]
api = [
"fastapi>=0.115.4",
"minio>=7.2.10",
"omegaconf>=2.3.0",
"onnx>=1.17.0",
"onnxruntime>=1.19.2",
"prometheus-client>=0.21.0",
"prometheus-fastapi-instrumentator>=7.0.0",
"pydantic-settings>=2.6.0",
"pymongo>=4.10.1",
"python-multipart>=0.0.16",
"pyyaml>=6.0.2",
"redis>=5.2.0",
"uvicorn>=0.32.0",
]
[tool.uv]
dev-dependencies = [
"getdaft>=0.3.9",
"jupyter>=1.1.1",
"lightgbm>=4.5.0",
"matplotlib>=3.9.2",
"mlflow>=2.17.1",
"omegaconf>=2.3.0",
"pandas>=2.2.3",
"polars>=1.12.0",
"prefect>=3.0.11",
"pytest>=8.3.3",
"ruff>=0.7.1",
"scikit-learn>=1.5.2",
"xgboost>=2.1.2",
]
[tool.ruff]
line-length = 200