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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-agentchat"
  6. version = "0.4.0dev0"
  7. description = "AutoGen agent and group chat 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 = [
  16. "autogen-core==0.4.0dev0",
  17. ]
  18. [tool.uv]
  19. dev-dependencies = []
  20. [tool.ruff]
  21. extend = "../../pyproject.toml"
  22. include = ["src/**", "tests/*.py"]
  23. [tool.pyright]
  24. extends = "../../pyproject.toml"
  25. include = ["src", "tests"]
  26. [tool.pytest.ini_options]
  27. minversion = "6.0"
  28. testpaths = ["tests"]
  29. [tool.poe]
  30. include = "../../shared_tasks.toml"
  31. [tool.poe.tasks]
  32. test = "pytest -n auto"