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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-ext"
  6. version = "0.4.0dev0"
  7. license = {file = "LICENSE-CODE"}
  8. description = "AutoGen extensions 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.0dev0",
  18. ]
  19. [project.optional-dependencies]
  20. langchain-tools = ["langchain >= 0.3.1"]
  21. azure-code-executor = ["azure-core"]
  22. [tool.hatch.build.targets.wheel]
  23. packages = ["src/autogen_ext"]
  24. [tool.uv]
  25. dev-dependencies = []
  26. [tool.ruff]
  27. extend = "../../pyproject.toml"
  28. include = ["src/**", "tests/*.py"]
  29. [tool.pyright]
  30. extends = "../../pyproject.toml"
  31. include = ["src", "tests"]
  32. [tool.pytest.ini_options]
  33. minversion = "6.0"
  34. testpaths = ["tests"]
  35. [tool.poe]
  36. include = "../../shared_tasks.toml"
  37. [tool.poe.tasks]
  38. test = "pytest -n auto"