mirror of
https://github.com/microsoft/autogen.git
synced 2025-12-27 06:59:03 +00:00
Add agentchat lib boilerplate (#493)
* Add agentchat lib * update lockfile
This commit is contained in:
parent
306541e247
commit
a815935062
1
python/packages/autogen-agentchat/README.md
Normal file
1
python/packages/autogen-agentchat/README.md
Normal file
@ -0,0 +1 @@
|
||||
# autogen-agentchat
|
||||
40
python/packages/autogen-agentchat/pyproject.toml
Normal file
40
python/packages/autogen-agentchat/pyproject.toml
Normal file
@ -0,0 +1,40 @@
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "autogen-agentchat"
|
||||
version = "0.3.0dev0"
|
||||
description = "AutoGen agent and group chat 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",
|
||||
|
||||
]
|
||||
|
||||
[tool.uv]
|
||||
dev-dependencies = []
|
||||
|
||||
|
||||
[tool.ruff]
|
||||
extend = "../../pyproject.toml"
|
||||
include = ["src/**", "tests/*.py"]
|
||||
|
||||
[tool.pyright]
|
||||
extend = "../../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"
|
||||
2
python/packages/autogen-agentchat/tests/test_example.py
Normal file
2
python/packages/autogen-agentchat/tests/test_example.py
Normal file
@ -0,0 +1,2 @@
|
||||
async def test_example() -> None:
|
||||
assert True
|
||||
12
python/uv.lock
generated
12
python/uv.lock
generated
@ -24,6 +24,7 @@ resolution-markers = [
|
||||
[manifest]
|
||||
members = [
|
||||
"agbench",
|
||||
"autogen-agentchat",
|
||||
"autogen-core",
|
||||
"team-one",
|
||||
]
|
||||
@ -272,6 +273,17 @@ wheels = [
|
||||
{ url = "https://files.pythonhosted.org/packages/6a/21/5b6702a7f963e95456c0de2d495f67bf5fd62840ac655dc451586d23d39a/attrs-24.2.0-py3-none-any.whl", hash = "sha256:81921eb96de3191c8258c199618104dd27ac608d9366f5e35d011eae1867ede2", size = 63001 },
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "autogen-agentchat"
|
||||
version = "0.3.0.dev0"
|
||||
source = { editable = "packages/autogen-agentchat" }
|
||||
dependencies = [
|
||||
{ name = "autogen-core" },
|
||||
]
|
||||
|
||||
[package.metadata]
|
||||
requires-dist = [{ name = "autogen-core", editable = "packages/autogen-core" }]
|
||||
|
||||
[[package]]
|
||||
name = "autogen-core"
|
||||
version = "0.3.dev0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user