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 554 B

1234567891011121314151617181920212223242526272829
  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 = [
  10. "autogen-core",
  11. "pytest",
  12. "opentelemetry-sdk>=1.27.0",
  13. ]
  14. [tool.ruff]
  15. extend = "../../pyproject.toml"
  16. include = ["src/**"]
  17. [tool.pyright]
  18. extends = "../../pyproject.toml"
  19. include = ["src"]
  20. [tool.poe]
  21. include = "../../shared_tasks.toml"
  22. [tool.poe.tasks]
  23. mypy = "mypy --config-file $POE_ROOT/../../pyproject.toml src"
  24. test = "true"