2024-06-24 10:36:10 -04:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
2024-10-01 15:59:03 -07:00
|
|
|
name = "autogen-magentic-one"
|
|
|
|
version = "0.0.1"
|
2024-10-09 15:01:09 -04:00
|
|
|
license = {file = "LICENSE-CODE"}
|
2024-06-24 10:36:10 -04:00
|
|
|
description = ''
|
2024-11-04 17:18:46 -08:00
|
|
|
readme = "README.md"
|
2024-06-24 10:36:10 -04:00
|
|
|
requires-python = ">=3.10"
|
|
|
|
keywords = []
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
]
|
2024-08-29 09:46:06 -04:00
|
|
|
|
2024-06-24 10:36:10 -04:00
|
|
|
dependencies = [
|
2024-08-29 09:46:06 -04:00
|
|
|
"autogen-core",
|
2024-11-04 17:18:46 -08:00
|
|
|
"autogen-ext[docker]",
|
2024-09-26 15:22:44 -07:00
|
|
|
"beautifulsoup4",
|
2024-07-11 10:52:29 -07:00
|
|
|
"aiofiles",
|
2024-07-12 12:48:47 -07:00
|
|
|
"requests",
|
|
|
|
"mammoth",
|
|
|
|
"markdownify",
|
|
|
|
"numpy",
|
|
|
|
"python-pptx",
|
|
|
|
"pandas",
|
2024-09-26 15:22:44 -07:00
|
|
|
"openpyxl",
|
2024-07-12 12:48:47 -07:00
|
|
|
"pdfminer.six",
|
|
|
|
"puremagic",
|
|
|
|
"pydub",
|
|
|
|
"youtube-transcript-api",
|
|
|
|
"SpeechRecognition",
|
|
|
|
"pathvalidate",
|
2024-07-23 11:49:38 -07:00
|
|
|
"playwright",
|
2024-09-16 12:37:26 -04:00
|
|
|
"pydantic<3.0.0,>=2.0.0",
|
2024-06-24 10:36:10 -04:00
|
|
|
]
|
|
|
|
|
2024-12-27 13:11:42 -05:00
|
|
|
[dependency-groups]
|
|
|
|
dev = [
|
2024-06-27 13:40:12 -04:00
|
|
|
"aiofiles",
|
2024-07-03 17:13:24 -07:00
|
|
|
"types-aiofiles",
|
2024-07-12 12:48:47 -07:00
|
|
|
"types-requests",
|
2024-07-23 11:49:38 -07:00
|
|
|
"types-pillow",
|
|
|
|
"azure-identity",
|
2024-07-26 15:34:47 -04:00
|
|
|
"openpyxl",
|
2024-06-24 10:36:10 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-08-29 09:46:06 -04:00
|
|
|
[tool.poe]
|
|
|
|
include = "../../shared_tasks.toml"
|
|
|
|
|
|
|
|
[tool.poe.tasks]
|
|
|
|
test.sequence = [
|
2024-07-26 15:34:47 -04:00
|
|
|
"playwright install",
|
|
|
|
"pytest -n auto",
|
|
|
|
]
|
2024-08-29 09:46:06 -04:00
|
|
|
test.default_item_type = "cmd"
|
2025-01-02 06:49:18 -08:00
|
|
|
coverage.sequence = [
|
|
|
|
"playwright install",
|
|
|
|
"pytest -n auto --cov=src --cov-report=term-missing --cov-report=xml",
|
|
|
|
]
|
|
|
|
coverage.default_item_type = "cmd"
|
2024-06-24 10:36:10 -04:00
|
|
|
|
|
|
|
[tool.ruff]
|
2024-08-29 09:46:06 -04:00
|
|
|
extend = "../../pyproject.toml"
|
2024-07-11 10:52:29 -07:00
|
|
|
exclude = ["build", "dist", "page_script.js"]
|
2024-07-23 11:49:38 -07:00
|
|
|
include = [
|
|
|
|
"src/**",
|
|
|
|
"examples/*.py",
|
2024-09-13 10:41:15 -04:00
|
|
|
"tests/**/*.py",
|
2024-07-23 11:49:38 -07:00
|
|
|
]
|
2024-06-24 10:36:10 -04:00
|
|
|
|
2024-09-23 16:10:57 -04:00
|
|
|
[tool.ruff.lint.per-file-ignores]
|
2024-10-01 15:59:03 -07:00
|
|
|
"src/autogen_magentic_one/utils.py" = ["T20"]
|
2024-09-23 16:10:57 -04:00
|
|
|
|
2024-06-24 10:36:10 -04:00
|
|
|
|
|
|
|
[tool.pyright]
|
2024-09-19 14:10:41 -04:00
|
|
|
extends = "../../pyproject.toml"
|
2024-09-26 15:22:44 -07:00
|
|
|
include = ["src", "tests", "examples"]
|