Files
autoresearch_template/pyproject.toml
T
wassname fc46d878cf init
2026-04-04 23:40:34 +08:00

32 lines
586 B
TOML

[project]
name = "{FILL_IN}" # replace with your project name
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"torch>=2.3",
"einops>=0.8",
"jaxtyping>=0.2",
"beartype>=0.18",
"loguru>=0.7",
"polars>=1.0",
"wandb>=0.17",
"tyro>=0.8",
"tabulate>=0.9",
# {FILL_IN}: add project-specific deps
]
[tool.uv]
dev-dependencies = [
"pytest>=8",
"ipykernel",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
ignore = [
"F722", # jaxtyping shape strings look like invalid syntax to ruff
"F821", # jaxtyping forward refs
]