AgentnessBench / pyproject.toml
irregular6612's picture
feat(cp0): proteus package skeleton + pyproject
483e590
Raw
History Blame Contribute Delete
626 Bytes
[project]
name = "proteus-arena"
version = "0.1.0"
description = "PROTEUS: a grid arena for measuring LLM motive-reading (Heider-Simmel / PHASE style)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.0",
"numpy>=1.26",
"pyyaml>=6.0",
]
[project.optional-dependencies]
viz = ["matplotlib>=3.8"]
providers = ["openai>=1.0", "anthropic>=0.30", "google-genai>=1.68.0", "httpx>=0.27"]
dev = ["pytest>=8.0"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["proteus"]
[tool.pytest.ini_options]
testpaths = ["tests"]