mirror of
https://github.com/wshobson/agents
synced 2026-06-21 14:13:58 +00:00
63f1c99292
Bumps the python-minor-and-patch group in /plugins/plugin-eval with 3 updates: [typer](https://github.com/fastapi/typer), [anthropic](https://github.com/anthropics/anthropic-sdk-python) and [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio). Updates `typer` from 0.25.1 to 0.26.4 - [Release notes](https://github.com/fastapi/typer/releases) - [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md) - [Commits](https://github.com/fastapi/typer/compare/0.25.1...0.26.4) Updates `anthropic` from 0.104.1 to 0.105.2 - [Release notes](https://github.com/anthropics/anthropic-sdk-python/releases) - [Changelog](https://github.com/anthropics/anthropic-sdk-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/anthropics/anthropic-sdk-python/compare/v0.104.1...v0.105.2) Updates `pytest-asyncio` from 1.3.0 to 1.4.0 - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases) - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v1.3.0...v1.4.0) --- updated-dependencies: - dependency-name: typer dependency-version: 0.26.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor-and-patch - dependency-name: anthropic dependency-version: 0.105.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor-and-patch - dependency-name: pytest-asyncio dependency-version: 1.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
1.3 KiB
TOML
63 lines
1.3 KiB
TOML
[project]
|
|
name = "plugin-eval"
|
|
version = "0.1.0"
|
|
description = "Three-layer quality evaluation framework for Claude Code plugins"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"pydantic>=2.13.4",
|
|
"typer>=0.26.4",
|
|
"rich>=15.0.0",
|
|
"pyyaml>=6.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
llm = [
|
|
"claude-agent-sdk>=0.2.87",
|
|
]
|
|
api = [
|
|
"anthropic>=0.105.2",
|
|
]
|
|
dev = [
|
|
"pytest>=9.0.3",
|
|
"pytest-asyncio>=1.4.0",
|
|
"pytest-cov>=6.0",
|
|
"ruff>=0.15.14",
|
|
"ty>=0.0.39",
|
|
]
|
|
|
|
[project.scripts]
|
|
plugin-eval = "plugin_eval.cli:app"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/plugin_eval"]
|
|
|
|
[tool.ruff]
|
|
target-version = "py312"
|
|
line-length = 100
|
|
|
|
[tool.ruff.lint]
|
|
select = ["E4", "E7", "E9", "F", "B", "I", "UP", "SIM"]
|
|
ignore = ["E501"]
|
|
|
|
[tool.ruff.format]
|
|
quote-style = "double"
|
|
|
|
[tool.ty.environment]
|
|
# Make `tools.adapters.*` importable when ty runs from plugins/plugin-eval/.
|
|
# The repo-root layout puts the adapter framework outside this package.
|
|
extra-paths = ["../.."]
|
|
|
|
[tool.ty.rules]
|
|
possibly-unresolved-reference = "error"
|
|
possibly-missing-attribute = "error"
|
|
possibly-missing-import = "error"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
asyncio_mode = "auto"
|