mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-22 22:18:23 -05:00
* migrate models * Update python/packages/autogen-agentchat/src/autogen_agentchat/agents/_tool_use_assistant_agent.py Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> * refactor missing imports * ignore type check errors * Update python/packages/autogen-ext/src/autogen_ext/models/_openai/_model_info.py Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com> * update packages index page --------- Co-authored-by: Leonardo Pinheiro <lpinheiro@microsoft.com> Co-authored-by: Eric Zhu <ekzhu@users.noreply.github.com>
59 lines
1.2 KiB
TOML
59 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "autogen-ext"
|
|
version = "0.4.0dev1"
|
|
license = {file = "LICENSE-CODE"}
|
|
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",
|
|
]
|
|
dependencies = [
|
|
"autogen-core==0.4.0dev1",
|
|
]
|
|
|
|
|
|
[project.optional-dependencies]
|
|
langchain-tools = ["langchain_core~= 0.3.3"]
|
|
azure-code-executor = ["azure-core"]
|
|
docker-code-executor = ["docker~=7.0"]
|
|
langchain = ["langchain_core~= 0.3.3"]
|
|
azure = ["azure-core", "azure-identity"]
|
|
docker = ["docker~=7.0"]
|
|
openai = ["openai>=1.3"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/autogen_ext"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = []
|
|
|
|
|
|
[tool.ruff]
|
|
extend = "../../pyproject.toml"
|
|
include = ["src/**", "tests/*.py"]
|
|
|
|
[tool.pyright]
|
|
extends = "../../pyproject.toml"
|
|
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"
|
|
|
|
[tool.mypy]
|
|
[[tool.mypy.overrides]]
|
|
module = "docker.*"
|
|
ignore_missing_imports = true |