airfRANS-model-exploration/pyproject.toml

32 lines
690 B
TOML
Raw Normal View History

2026-07-21 08:32:30 +00:00
[project]
name = "airfrans-frontier"
version = "0.1.0"
description = "Utilities for inspecting local AirfRANS scaling-frontier data."
requires-python = ">=3.11"
dependencies = [
"numpy>=2.4.0",
"torch>=2.8.0",
]
[project.scripts]
airfrans-frontier = "airfrans_frontier.cli:main"
2026-07-23 05:47:43 +00:00
remote-run = "airfrans_frontier.remote.cli:main"
2026-07-21 08:32:30 +00:00
[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",
2026-07-23 05:47:43 +00:00
"skypilot[vast]>=0.12.3.post1",
"pytest>=9.1.1",
2026-07-21 08:32:30 +00:00
]