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

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