2024-06-24 10:36:10 -04:00
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "team-one"
|
2024-09-30 19:43:05 -04:00
|
|
|
version = "0.1.0dev0"
|
2024-06-24 10:36:10 -04:00
|
|
|
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",
|
|
|
|
]
|
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-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-08-29 09:46:06 -04:00
|
|
|
[tool.uv]
|
|
|
|
dev-dependencies = [
|
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"
|
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]
|
|
|
|
"src/team_one/utils.py" = ["T20"]
|
|
|
|
|
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"]
|