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

1 year ago
1 year ago
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-agentchat"
  6. version = "0.4.0.dev6"
  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.dev6",
  18. ]
  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"