29 lines
584 B
TOML
29 lines
584 B
TOML
|
|
[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"
|
||
|
|
|
||
|
|
[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",
|
||
|
|
]
|