autogen/python/packages/team-one/pyproject.toml

77 lines
1.3 KiB
TOML
Raw Normal View History

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "team-one"
2024-09-30 19:43:05 -04:00
version = "0.1.0dev0"
description = ''
readme = "readme.md"
requires-python = ">=3.10"
license = "MIT"
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"autogen-core",
"beautifulsoup4",
"aiofiles",
"requests",
"mammoth",
"markdownify",
"numpy",
"python-pptx",
"pandas",
"openpyxl",
"pdfminer.six",
"puremagic",
"pydub",
"youtube-transcript-api",
"SpeechRecognition",
"pathvalidate",
2024-07-23 11:49:38 -07:00
"playwright",
"pydantic<3.0.0,>=2.0.0",
]
[tool.uv]
dev-dependencies = [
"aiofiles",
"types-aiofiles",
"types-requests",
2024-07-23 11:49:38 -07:00
"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"]
2024-07-23 11:49:38 -07:00
include = [
"src/**",
"examples/*.py",
"tests/**/*.py",
2024-07-23 11:49:38 -07:00
]
[tool.ruff.lint.per-file-ignores]
"src/team_one/utils.py" = ["T20"]
[tool.pyright]
extends = "../../pyproject.toml"
include = ["src", "tests", "examples"]