mirror of
https://github.com/wassname/autoresearch_template.git
synced 2026-06-27 16:14:27 +08:00
33 lines
611 B
TOML
33 lines
611 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]
|
|
exclude-newer = "5 days"
|
|
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
|
|
]
|