21 lines
372 B
TOML
21 lines
372 B
TOML
[project]
|
|
name = "prosgym"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"hf-xet>=1.2.0",
|
|
"torch>=2.9.1",
|
|
"transformers>=4.57.3",
|
|
]
|
|
|
|
[[tool.uv.index]]
|
|
name = "pytorch"
|
|
url = "https://download.pytorch.org/whl/cu126"
|
|
explicit = true
|
|
|
|
[tool.uv.sources]
|
|
torch = { index = "pytorch" }
|
|
|