Files
giant/pyproject.toml
T
2026-06-17 11:27:49 +02:00

34 lines
586 B
TOML

[project]
name = "giant"
version = "0.1.0"
description = "Geant4 step-function surrogate via conditional flow matching"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"torch>=2.3",
"numpy>=1.26",
"pandas>=2.2",
"pyarrow>=16",
"typer>=0.12",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
]
convert = [
"uproot>=5.3",
"awkward>=2.6",
"polars>=1.0",
]
[project.scripts]
giant = "giant.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["giant"]