mirror of
https://github.com/microsoft/autogen.git
synced 2026-01-05 03:31:35 +00:00
* add skeleton worflow manager * add test notebook * update test nb * add sample team spec * refactor requirements to agentchat and ext * add base provider to return agentchat agents from json spec * initial api refactor, update dbmanager * api refactor * refactor tests * ags api tutorial update * ui refactor * general refactor * minor refactor updates * backend api refaactor * ui refactor and update * implement v1 for streaming connection with ui updates * backend refactor * ui refactor * minor ui tweak * minor refactor and tweaks * general refactor * update tests * sync uv.lock with main * uv lock update
67 lines
1.4 KiB
TOML
67 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "autogenstudio"
|
|
authors = [
|
|
{ name="AutoGen Team", email="autogen@microsoft.com" },
|
|
]
|
|
description = "AutoGen Studio"
|
|
readme = "README.md"
|
|
license = {file = "LICENSE-CODE"}
|
|
requires-python = ">=3.9, <3.13"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
|
|
dependencies = [
|
|
"pydantic",
|
|
"fastapi",
|
|
"typer",
|
|
"uvicorn",
|
|
"python-dotenv",
|
|
"websockets",
|
|
"numpy < 2.0.0",
|
|
"sqlmodel",
|
|
"psycopg",
|
|
"alembic",
|
|
"loguru",
|
|
]
|
|
optional-dependencies = {web = ["fastapi", "uvicorn"], database = ["psycopg"]}
|
|
|
|
dynamic = ["version"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "autogenstudio.version.VERSION"}
|
|
readme = {file = ["README.md"]}
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["autogenstudio*"]
|
|
exclude = ["*.tests*"]
|
|
namespaces = false
|
|
|
|
[tool.setuptools.package-data]
|
|
"autogenstudio" = ["*.*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
filterwarnings = [
|
|
"ignore:Deprecated call to `pkg_resources\\.declare_namespace\\('.*'\\):DeprecationWarning",
|
|
"ignore::DeprecationWarning:google.rpc",
|
|
]
|
|
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/microsoft/autogen"
|
|
"Bug Tracker" = "https://github.com/microsoft/autogen/issues"
|
|
|
|
[project.scripts]
|
|
autogenstudio = "autogenstudio.cli:run"
|