Files
doslang-mirror/pyproject.toml
T

22 lines
473 B
TOML

[project]
name = "ferrolang"
version = "0.1.0"
description = "Ferro language compiler and QEMU development automation"
requires-python = ">=3.12"
dependencies = [
"onnxruntime>=1.28.0",
"pytest>=9.0.0",
"rapidocr>=3.9.2",
]
[project.scripts]
ferro-vm = "ferrolang_vm.cli:main"
ferro-test = "ferrolang_vm.test_cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/ferrolang_vm"]