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

12345678910111213141516171819202122232425262728293031323334353637383940
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-agentchat"
  6. version = "0.4.0.dev13"
  7. license = {file = "LICENSE-CODE"}
  8. description = "AutoGen agents and teams library"
  9. readme = "README.md"
  10. requires-python = ">=3.10"
  11. classifiers = [
  12. "Programming Language :: Python :: 3",
  13. "License :: OSI Approved :: MIT License",
  14. "Operating System :: OS Independent",
  15. ]
  16. dependencies = [
  17. "autogen-core==0.4.0.dev13",
  18. "aioconsole>=0.8.1"
  19. ]
  20. [tool.ruff]
  21. extend = "../../pyproject.toml"
  22. include = ["src/**", "tests/*.py"]
  23. [tool.pyright]
  24. extends = "../../pyproject.toml"
  25. include = ["src", "tests"]
  26. reportDeprecated = true
  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"
  34. coverage = "pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml"