Victor Dibia 85cf942d37
Add v1 Drag and Drop Team Composition to AGS (#4609)
* v1 progress on drag_drop

* add v1 for node deletions

* major refactor, add sidebar to teams and session playground

* format updates

* formatting updates

* update formatting

* formatting and other checks

* add mangentic one deps

* general refactor, fix new team creation bug etc...

* minor bugfix

* update uv lock

---------

Co-authored-by: Ryan Sweet <rysweet@microsoft.com>
2024-12-11 14:31:25 -08:00

91 lines
1.8 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",
"pydantic-settings",
"fastapi",
"typer",
"uvicorn",
"aiofiles",
"python-dotenv",
"websockets",
"numpy < 2.0.0",
"sqlmodel",
"psycopg",
"alembic",
"loguru",
"pyyaml",
"autogen-core==0.4.0.dev11",
"autogen-agentchat==0.4.0.dev11",
"autogen-ext[magentic-one]==0.4.0.dev11"
]
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"
[tool.ruff]
extend = "../../pyproject.toml"
exclude = ["build", "dist"]
include = [
"autogenstudio/**"
]
[tool.ruff.lint]
ignore = ["B008"]
[tool.poe.tasks]
fmt = "ruff format"
format.ref = "fmt"
lint = "ruff check"
test = "pytest -n 0"