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

1234567891011121314151617181920212223242526272829303132333435363738
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-agentchat"
  6. version = "0.4.8"
  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.8",
  18. ]
  19. [tool.ruff]
  20. extend = "../../pyproject.toml"
  21. include = ["src/**", "tests/*.py"]
  22. [tool.pyright]
  23. extends = "../../pyproject.toml"
  24. include = ["src", "tests"]
  25. reportDeprecated = true
  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 --cov=src --cov-report=term-missing --cov-report=xml"