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

12345678910111213141516171819202122232425
  1. [build-system]
  2. build-backend="hatchling.build"
  3. requires =[ "hatchling" ]
  4. [project]
  5. dependencies =[ "autogen-core", "opentelemetry-sdk>=1.27.0", "pytest" ]
  6. license ={ file="LICENSE-CODE" }
  7. name ="autogen-test-utils"
  8. requires-python=">=3.10"
  9. version ="0.0.0"
  10. [tool.ruff]
  11. extend ="../../pyproject.toml"
  12. include=[ "src/**" ]
  13. [tool.pyright]
  14. extends="../../pyproject.toml"
  15. include=[ "src" ]
  16. [tool.poe]
  17. include="../../shared_tasks.toml"
  18. [tool.poe.tasks]
  19. mypy="mypy --config-file $POE_ROOT/../../pyproject.toml src"
  20. test="python -c \"import sys; sys.exit(0)\""