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 1.4 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. [build-system]
  2. requires = ["hatchling"]
  3. build-backend = "hatchling.build"
  4. [project]
  5. name = "autogen-ext"
  6. version = "0.4.0.dev8"
  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.0.dev8",
  18. ]
  19. [project.optional-dependencies]
  20. langchain = ["langchain_core~= 0.3.3"]
  21. azure = ["azure-core", "azure-identity"]
  22. docker = ["docker~=7.0"]
  23. openai = ["openai>=1.3", "aiofiles"]
  24. web-surfer = [
  25. "playwright>=1.48.0",
  26. "pillow>=11.0.0",
  27. ]
  28. video-surfer = [
  29. "autogen-agentchat==0.4.0.dev8",
  30. "opencv-python>=4.5",
  31. "ffmpeg-python",
  32. "openai-whisper",
  33. ]
  34. [tool.hatch.build.targets.wheel]
  35. packages = ["src/autogen_ext"]
  36. [tool.uv]
  37. dev-dependencies = []
  38. [tool.ruff]
  39. extend = "../../pyproject.toml"
  40. include = ["src/**", "tests/*.py"]
  41. exclude = ["src/autogen_ext/agents/web_surfer/*.js"]
  42. [tool.pyright]
  43. extends = "../../pyproject.toml"
  44. include = ["src", "tests"]
  45. [tool.pytest.ini_options]
  46. minversion = "6.0"
  47. testpaths = ["tests"]
  48. [tool.poe]
  49. include = "../../shared_tasks.toml"
  50. [tool.poe.tasks]
  51. test = "pytest -n auto"
  52. [tool.mypy]
  53. [[tool.mypy.overrides]]
  54. module = "docker.*"
  55. ignore_missing_imports = true