-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (27 loc) · 1.04 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
[tool.poetry]
name = "train"
version = "0.3.0"
description = "Weather Model Training Kubeflow Component"
authors = ["Martynas Subonis <martynas.subonis@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "~3.12"
kfp = "2.8.0"
google-cloud-storage = "2.18.2"
matplotlib = "3.9.2"
onnx = "1.16.2"
# Darwin is added for people to be able to execute component (or parts of it) locally.
torch = [
{ url = "https://download.pytorch.org/whl/cpu/torch-2.3.1%2Bcpu-cp312-cp312-linux_x86_64.whl", platform = "linux" },
{ url = "https://download.pytorch.org/whl/cpu/torch-2.3.1-cp312-none-macosx_11_0_arm64.whl", platform = "darwin" }
]
torchvision = [
{ url = "https://download.pytorch.org/whl/cpu/torchvision-0.18.1%2Bcpu-cp312-cp312-linux_x86_64.whl", platform = "linux" },
{ url = "https://download.pytorch.org/whl/cpu/torchvision-0.18.1-cp312-cp312-macosx_11_0_arm64.whl", platform = "darwin" },
]
pillow = "10.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"