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

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