Files
GigaAM-onnx/pyproject.toml
2025-12-03 16:44:29 +03:00

30 lines
574 B
TOML

[project]
name = "gigaam-onnx"
authors = [
{ name = "nikto_b", email = "niktob560@yandex.ru" }
]
license = "MIT"
version = "0.1.0"
description = "ONNX wrapper for a GigaAMASR models"
requires-python = ">=3.13"
dependencies = [
"hatchling>=1.28.0",
"numpy==2.*",
"onnxruntime==1.23.*",
"sentencepiece>=0.2.1",
"torch>=2.5,<2.9",
"torchaudio>=2.5,<2.9",
]
[dependency-groups]
dev = [
"scipy>=1.16.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/gigaam_onnx"]