37 lines
No EOL
798 B
TOML
37 lines
No EOL
798 B
TOML
[project]
|
|
name = "airfrans-frontier"
|
|
version = "0.1.0"
|
|
description = "Utilities for inspecting local AirfRANS scaling-frontier data."
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"huggingface-hub>=0.36.0",
|
|
"numpy>=2.4.0",
|
|
"torch>=2.7.1,<2.8.0",
|
|
"wandb>=0.23.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
airfrans-frontier = "airfrans_frontier.cli:main"
|
|
remote-run = "airfrans_frontier.remote.cli:main"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/airfrans_frontier"]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"ipykernel>=6.30.0",
|
|
"matplotlib>=3.11.1",
|
|
"numpy>=2.4.0",
|
|
"nbclient>=0.10.2",
|
|
"nbformat>=5.10.4",
|
|
"skypilot[vast]>=0.12.3.post1",
|
|
"pytest>=9.1.1",
|
|
]
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"] |