26 lines
588 B
TOML
Raw Permalink Normal View History

[build-system]
build-backend="hatchling.build"
requires =[ "hatchling" ]
[project]
dependencies =[ "autogen-core", "opentelemetry-sdk>=1.27.0", "pytest" ]
license ={ file="LICENSE-CODE" }
name ="autogen-test-utils"
requires-python=">=3.10"
version ="0.0.0"
[tool.ruff]
extend ="../../pyproject.toml"
include=[ "src/**" ]
[tool.pyright]
extends="../../pyproject.toml"
include=[ "src" ]
[tool.poe]
include="../../shared_tasks.toml"
[tool.poe.tasks]
mypy="mypy --config-file $POE_ROOT/../../pyproject.toml src"
test="python -c \"import sys; sys.exit(0)\""