mirror of
https://github.com/microsoft/autogen.git
synced 2025-08-21 23:22:05 +00:00
32 lines
537 B
TOML
32 lines
537 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "autogen-test-utils"
|
|
version = "0.0.0"
|
|
license = {file = "LICENSE-CODE"}
|
|
requires-python = ">=3.10"
|
|
dependencies = ["autogen-core",
|
|
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = []
|
|
|
|
|
|
[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 = "true"
|