Spaces:
Running on Zero
Running on Zero
File size: 1,001 Bytes
d22e889 3d34a3b d22e889 3d34a3b d22e889 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "limen-runtime-audit"
version = "0.2.0"
description = "Reproducible runtime trajectory auditing and evidence-chain observability for open-weight language models"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [{name = "Jean-Denis Batuli"}]
dependencies = ["numpy>=1.24"]
[project.urls]
Homepage = "https://github.com/jeanbosange-bit/limen-runtime-audit"
Repository = "https://github.com/jeanbosange-bit/limen-runtime-audit"
Issues = "https://github.com/jeanbosange-bit/limen-runtime-audit/issues"
[project.optional-dependencies]
dev = ["pytest>=8.0"]
space = ["torch>=2.1", "transformers>=4.42", "accelerate>=0.30", "gradio", "spaces"]
[project.scripts]
limen-audit = "limen_runtime_audit.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
|