1
0
Files
BasaltMeter/BasaltTrainer/pyproject.toml

31 lines
695 B
TOML
Raw Permalink Normal View History

2025-11-25 13:38:17 +08:00
[project]
name = "basalt-trainer"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"datasets>=4.3.0",
"matplotlib>=3.10.7",
"numpy>=2.3.4",
2026-01-06 16:27:19 +08:00
"pywin32>=311 ; sys_platform == 'win32'",
"torch>=2.9.0",
"torchvision>=0.24.0",
2025-11-25 13:38:17 +08:00
]
[tool.uv.sources]
torch = [
{ index = "pytorch-cu126", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
torchvision = [
{ index = "pytorch-cu126", marker = "sys_platform == 'linux' or sys_platform == 'win32'" },
]
[[tool.uv.index]]
name = "pytorch-cu126"
url = "https://download.pytorch.org/whl/cu126"
explicit = true
2026-01-08 20:04:24 +08:00
[too.ruff]
2026-01-08 20:25:33 +08:00
line-length = 130