2024-09-13 10:47:36 -04:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "autogen-agentchat"
|
2025-04-16 11:02:25 -07:00
|
|
|
version = "0.5.3"
|
2024-10-09 15:01:09 -04:00
|
|
|
license = {file = "LICENSE-CODE"}
|
2024-10-09 15:54:35 -07:00
|
|
|
description = "AutoGen agents and teams library"
|
2024-09-13 10:47:36 -04:00
|
|
|
readme = "README.md"
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
2024-09-30 19:43:05 -04:00
|
|
|
dependencies = [
|
2025-04-16 11:02:25 -07:00
|
|
|
"autogen-core==0.5.3",
|
2024-09-13 10:47:36 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
extend = "../../pyproject.toml"
|
|
|
|
include = ["src/**", "tests/*.py"]
|
|
|
|
|
|
|
|
[tool.pyright]
|
2024-09-18 16:23:53 -04:00
|
|
|
extends = "../../pyproject.toml"
|
2024-09-13 10:47:36 -04:00
|
|
|
include = ["src", "tests"]
|
2024-11-26 19:31:23 -05:00
|
|
|
reportDeprecated = true
|
2024-09-13 10:47:36 -04:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
minversion = "6.0"
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
|
|
|
[tool.poe]
|
|
|
|
include = "../../shared_tasks.toml"
|
|
|
|
|
|
|
|
[tool.poe.tasks]
|
2025-01-18 00:32:18 +10:00
|
|
|
test = "pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml"
|