kulono / multi-model-verifier
blob · pyproject.toml · toml
← filesrepo
pyproject.tomltoml
1[build-system]
2requires = ["setuptools>=61"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "multi-model-verifier"
7version = "0.1.0"
8description = "Cross-model consensus gate — broadcast one prompt to all models, measure divergence, block high-stakes actions when models disagree."
9readme = "README.md"
10license = {text = "AGPL-3.0"}
11requires-python = ">=3.9"
12authors = [{name = "Zize Tu", email = "[email protected]"}]
13keywords = ["llm", "agent", "consensus", "verification", "multi-model", "ai-safety"]
14classifiers = [
15 "Development Status :: 4 - Beta",
16 "Intended Audience :: Developers",
17 "License :: OSI Approved :: GNU Affero General Public License v3",
18 "Programming Language :: Python :: 3",
19 "Topic :: Scientific/Engineering :: Artificial Intelligence",
20]
21
22[tool.setuptools]
23packages = ["multi_model_verifier"]
24
25[tool.pytest.ini_options]
26testpaths = ["tests"]
27
100%