mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-09 02:35:21 -05:00
* Update pyproject.toml for Poetry mismatch * Update samples/apps/autogen-studio/pyproject.toml Co-authored-by: Agam More <agam360@gmail.com> --------- Co-authored-by: Victor Dibia <chuvidi2003@gmail.com> Co-authored-by: Victor Dibia <victordibia@microsoft.com>
62 lines
1.3 KiB
TOML
62 lines
1.3 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" }
|
|
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",
|
|
"arxiv",
|
|
"pyautogen>=0.2.0"
|
|
]
|
|
optional-dependencies = {web = ["fastapi", "uvicorn"]}
|
|
|
|
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"
|