modelcourt / pyproject.toml
existcode's picture
Upload 39 files
b26abb3 verified
Raw
History Blame Contribute Delete
594 Bytes
[project]
name = "model-court"
version = "0.1.0"
description = "Multi-agent claim adjudication demo for auditable AI decisions on AMD GPUs."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"gradio>=4.44.0",
"httpx>=0.27.0",
"pillow>=10.4.0",
"plotly>=5.24.0",
"pydantic>=2.8.0",
]
[dependency-groups]
dev = [
"pytest>=8.3.0",
"ruff>=0.6.0",
]
[tool.uv]
package = false
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]