kulono / multi-model-verifier
blob · pyproject.toml · toml
pyproject.tomltoml
1[build-system]2requires = ["setuptools>=61"]3build-backend = "setuptools.build_meta"45[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]2122[tool.setuptools]23packages = ["multi_model_verifier"]2425[tool.pytest.ini_options]26testpaths = ["tests"]27
100%