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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-ext"
  6. version = "0.3.0dev0"
  7. description = "AutoGen extensions library"
  8. readme = "README.md"
  9. requires-python = ">=3.10"
  10. classifiers = [
  11. "Programming Language :: Python :: 3",
  12. "License :: OSI Approved :: MIT License",
  13. "Operating System :: OS Independent",
  14. ]
  15. dependencies = ["autogen-core",
  16. ]
  17. [tool.hatch.build.targets.wheel]
  18. packages = ["src/autogen_ext"]
  19. [tool.uv]
  20. dev-dependencies = []
  21. [tool.ruff]
  22. extend = "../../pyproject.toml"
  23. include = ["src/**", "tests/*.py"]
  24. [tool.pyright]
  25. extends = "../../pyproject.toml"
  26. include = ["src", "tests"]
  27. [tool.pytest.ini_options]
  28. minversion = "6.0"
  29. testpaths = ["tests"]
  30. [tool.poe]
  31. include = "../../shared_tasks.toml"
  32. [tool.poe.tasks]
  33. test = "pytest -n auto"