2024-09-18 06:12:08 -07:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "autogen-ext"
|
2024-11-25 17:09:41 -05:00
|
|
|
version = "0.4.0.dev7"
|
2024-10-09 15:01:09 -04:00
|
|
|
license = {file = "LICENSE-CODE"}
|
2024-09-18 06:12:08 -07:00
|
|
|
description = "AutoGen extensions library"
|
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
2024-10-01 09:35:49 +10:00
|
|
|
dependencies = [
|
2024-11-25 17:09:41 -05:00
|
|
|
"autogen-core==0.4.0.dev7",
|
2024-09-18 06:12:08 -07:00
|
|
|
]
|
|
|
|
|
2024-10-01 09:35:49 +10:00
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2024-10-17 15:06:16 -07:00
|
|
|
langchain-tools = ["langchain_core~= 0.3.3"]
|
2024-10-09 08:05:44 +10:00
|
|
|
azure-code-executor = ["azure-core"]
|
2024-10-12 02:28:15 +10:00
|
|
|
docker-code-executor = ["docker~=7.0"]
|
2024-10-23 01:40:41 +10:00
|
|
|
langchain = ["langchain_core~= 0.3.3"]
|
|
|
|
azure = ["azure-core", "azure-identity"]
|
|
|
|
docker = ["docker~=7.0"]
|
|
|
|
openai = ["openai>=1.3"]
|
2024-11-07 16:47:53 -08:00
|
|
|
web-surfer = [
|
|
|
|
"playwright>=1.48.0",
|
|
|
|
"pillow>=11.0.0",
|
|
|
|
]
|
2024-10-01 09:35:49 +10:00
|
|
|
|
2024-09-18 06:12:08 -07:00
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
packages = ["src/autogen_ext"]
|
|
|
|
|
|
|
|
[tool.uv]
|
|
|
|
dev-dependencies = []
|
|
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
extend = "../../pyproject.toml"
|
|
|
|
include = ["src/**", "tests/*.py"]
|
2024-11-07 16:47:53 -08:00
|
|
|
exclude = ["src/autogen_ext/agents/web_surfer/*.js"]
|
2024-09-18 06:12:08 -07:00
|
|
|
|
|
|
|
[tool.pyright]
|
2024-09-18 16:23:53 -04:00
|
|
|
extends = "../../pyproject.toml"
|
2024-09-18 06:12:08 -07:00
|
|
|
include = ["src", "tests"]
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
|
|
|
[tool.poe]
|
|
|
|
include = "../../shared_tasks.toml"
|
|
|
|
|
|
|
|
[tool.poe.tasks]
|
|
|
|
test = "pytest -n auto"
|
2024-10-12 02:28:15 +10:00
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
[[tool.mypy.overrides]]
|
|
|
|
module = "docker.*"
|
2024-10-23 08:24:36 -07:00
|
|
|
ignore_missing_imports = true
|