-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (48 loc) · 953 Bytes
/
pyproject.toml
File metadata and controls
54 lines (48 loc) · 953 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "mlops"
version = "0.1.0"
description = "Add your description here"
requires-python = "==3.12.*"
dependencies = [
"certifi>=2025.10.5",
"datasets>=4.4.0",
"evaluate>=0.4.6",
"lightning>=2.5.5",
"pydantic>=2.12.3",
"scikit-learn>=1.7.2",
"scipy>=1.16.3",
"transformers>=4.57.1",
"wandb>=0.22.3",
]
[project.optional-dependencies]
cpu = [
"torch>=2.9.0",
]
cu129 = [
"torch>=2.9.0",
]
[tool.uv]
conflicts = [
[
{ extra = "cpu" },
{ extra = "cu129" },
],
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cpu", extra = "cpu" },
{ index = "pytorch-cu129", extra = "cu129" },
]
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[[tool.uv.index]]
name = "pytorch-cu129"
url = "https://download.pytorch.org/whl/cu129"
explicit = true
[dependency-groups]
dev = [
"ipywidgets>=8.1.7",
"notebook>=7.4.7",
]