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

12345678910111213141516171819202122232425
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "pyautogen"
  6. version = "0.10.0"
  7. license = {file = "LICENSE-CODE"}
  8. description = "A programming framework for agentic AI. Proxy package for autogen-agentchat."
  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-agentchat>=0.6.4",
  18. ]
  19. [tool.hatch.build.targets.wheel]
  20. packages = ["src/pyautogen"]
  21. [tool.hatch.build.targets.sdist]
  22. include = ["pyproject.toml", "README.md", "LICENSE-CODE", "src/**"]