mirror of
https://github.com/microsoft/autogen.git
synced 2026-02-13 13:55:04 -05:00
* Prints the version of AutoGenBench from the command line, closing i1458 * Added autogenbench version to timestamp.txt * Attempting to fix formatting. * Add a gitignore for autogenbench * Generalize to read all template dirs from Templates * AutoGenBench logs telemetry when available. * Remove spaces if present from template names. * Bump version. * Fixed formatting. * Allow native warning to be skipped. Mount autogen repo in Docker if it can be found (experimental). * Native execution now occurs in a venv. * Bump version. * Fixed a prompt escaping bug evident in GAIA task '6f37996b-2ac7-44b0-8e68-6d28256631b4' * Updated all scenarios to use template discovery. * Update with main version of runtime_logging. --------- Co-authored-by: gagb <gagb@users.noreply.github.com>
55 lines
1.2 KiB
TOML
55 lines
1.2 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "autogenbench"
|
|
authors = [
|
|
{ name="Autogen Team", email="auto-gen@outlook.com" },
|
|
]
|
|
description = "AutoGen Testbed Tools"
|
|
readme = "README.md"
|
|
license = { file="LICENSE" }
|
|
requires-python = ">=3.8, <3.13"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
dependencies = [
|
|
"pyautogen",
|
|
"docker",
|
|
"huggingface_hub",
|
|
"tabulate",
|
|
]
|
|
|
|
dynamic = ["version"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "autogenbench.version.__version__"}
|
|
readme = {file = ["README.md"]}
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["autogenbench*"]
|
|
exclude = ["*.tests*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
"autogenbench" = ["*.*"]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/microsoft/autogen"
|
|
"Bug Tracker" = "https://github.com/microsoft/autogen/issues"
|
|
|
|
[project.scripts]
|
|
autogenbench = "autogenbench.cli:main"
|
|
|
|
[tool.black]
|
|
# https://github.com/psf/black
|
|
line-length = 120
|
|
exclude = "(.eggs|.git|.hg|.mypy_cache|.venv|_build|buck-out|build|dist)"
|