You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 537 B

12345678910111213141516171819202122232425262728293031
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-test-utils"
  6. version = "0.0.0"
  7. license = {file = "LICENSE-CODE"}
  8. requires-python = ">=3.10"
  9. dependencies = ["autogen-core",
  10. ]
  11. [tool.uv]
  12. dev-dependencies = []
  13. [tool.ruff]
  14. extend = "../../pyproject.toml"
  15. include = ["src/**"]
  16. [tool.pyright]
  17. extends = "../../pyproject.toml"
  18. include = ["src"]
  19. [tool.poe]
  20. include = "../../shared_tasks.toml"
  21. [tool.poe.tasks]
  22. mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
  23. test = "true"