Files
context-extractor/automation/pyproject.toml
T
ilia 81ba2461d1
CI / automation-js (vitest + real Chromium) (pull_request) Successful in 1m12s
CI / Lint + tests (pull_request) Successful in 10m25s
Release 1.5.0: controls inventory and data-URI truncation.
Also align __version__ with the unified product version.
2026-08-09 19:31:58 -04:00

35 lines
962 B
TOML

[project]
name = "context-extractor"
version = "1.5.0"
description = "Capture console/network/errors and extract AI-ready markdown from a Playwright or Camoufox page."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Context Extractor contributors" }]
keywords = ["playwright", "camoufox", "scraping", "llm", "markdown", "browser-extension"]
dependencies = [
"playwright>=1.44",
]
[project.optional-dependencies]
camoufox = ["camoufox[geoip]>=0.4"]
dev = ["pytest>=8.0", "pytest-asyncio>=0.23", "ruff>=0.8"]
[project.scripts]
context-extractor = "context_extractor.cli:main"
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["context_extractor*"]
[tool.setuptools.package-data]
context_extractor = ["js/*.js"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = ["ignore::DeprecationWarning"]