Initial commit

This commit is contained in:
2025-12-03 16:44:29 +03:00
commit 4f7f22e95f
15 changed files with 1693 additions and 0 deletions

29
pyproject.toml Normal file
View File

@@ -0,0 +1,29 @@
[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"]