2024-12-04 16:23:20 -08:00
|
|
|
[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"
|
2024-12-31 15:11:48 -05:00
|
|
|
dependencies = [
|
|
|
|
"autogen-core",
|
|
|
|
"pytest",
|
|
|
|
"opentelemetry-sdk>=1.27.0",
|
2024-12-04 16:23:20 -08:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
extend = "../../pyproject.toml"
|
|
|
|
include = ["src/**"]
|
|
|
|
|
|
|
|
[tool.pyright]
|
|
|
|
extends = "../../pyproject.toml"
|
|
|
|
include = ["src"]
|
|
|
|
|
|
|
|
[tool.poe]
|
|
|
|
include = "../../shared_tasks.toml"
|
|
|
|
|
|
|
|
[tool.poe.tasks]
|
2024-12-12 14:37:57 -05:00
|
|
|
mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
|
2024-12-04 16:23:20 -08:00
|
|
|
test = "true"
|