mirror of
https://github.com/microsoft/autogen.git
synced 2025-10-06 13:35:56 +00:00

* update example script with logs dir, add screenshot timestamp * readme examples update * add flask app to view magentic_one * remove copy example * rename * changes to magentic one helper * update test web surfer to delete logs * magentic_one icons * fix colors - final log viewer * fix termination condition * update coder and log viewer * timeout time * make tests pass * logs dir * repeated thing * remove log_viewer, mm web surfer comments * coder change prompt, edit readmes * type ignore * remove logviewer * add flag for coder agent * readme * changes readme * uv lock * update readme figures * not yet * pointer images
78 lines
1.4 KiB
TOML
78 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "autogen-magentic-one"
|
|
version = "0.0.1"
|
|
license = {file = "LICENSE-CODE"}
|
|
description = ''
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
keywords = []
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
|
|
dependencies = [
|
|
"autogen-core",
|
|
"autogen-ext[docker]",
|
|
"beautifulsoup4",
|
|
"aiofiles",
|
|
"requests",
|
|
"mammoth",
|
|
"markdownify",
|
|
"numpy",
|
|
"python-pptx",
|
|
"pandas",
|
|
"openpyxl",
|
|
"pdfminer.six",
|
|
"puremagic",
|
|
"pydub",
|
|
"youtube-transcript-api",
|
|
"SpeechRecognition",
|
|
"pathvalidate",
|
|
"playwright",
|
|
"pydantic<3.0.0,>=2.0.0",
|
|
]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"aiofiles",
|
|
"types-aiofiles",
|
|
"types-requests",
|
|
"types-pillow",
|
|
"azure-identity",
|
|
"openpyxl",
|
|
]
|
|
|
|
|
|
[tool.poe]
|
|
include = "../../shared_tasks.toml"
|
|
|
|
[tool.poe.tasks]
|
|
test.sequence = [
|
|
"playwright install",
|
|
"pytest -n auto",
|
|
]
|
|
test.default_item_type = "cmd"
|
|
|
|
[tool.ruff]
|
|
extend = "../../pyproject.toml"
|
|
exclude = ["build", "dist", "page_script.js"]
|
|
include = [
|
|
"src/**",
|
|
"examples/*.py",
|
|
"tests/**/*.py",
|
|
]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"src/autogen_magentic_one/utils.py" = ["T20"]
|
|
|
|
|
|
[tool.pyright]
|
|
extends = "../../pyproject.toml"
|
|
include = ["src", "tests", "examples"]
|