-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (41 loc) · 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (41 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "gather-engine"
version = "1.6.1"
description = "Accountable research intake for difficult sources, with provenance receipts and witnessed digests."
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
authors = [{ name = "Zain Dana Harper" }]
keywords = [
"research", "intake", "ingestion", "provenance", "transcripts", "arxiv", "accountability",
"ocr", "transcription", "headless-browser", "synthesis", "web-scraping", "ssrf-safe",
]
dependencies = []
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov>=5", "ruff>=0.6", "mypy>=1.10"]
# Capability backends (wedge 5 parity layer). The core stays zero-dep; these are
# opt-in edges. Missing edge => honest UNVERIFIABLE or stdlib fallback, never a fake.
fast = ["lxml>=5"] # native-speed parsing (2x on large docs); stdlib is the fallback
browser = ["playwright>=1.4"] # JS render (needs `playwright install chromium`)
stealth = ["curl_cffi>=0.7"] # TLS/browser impersonation transport
all = ["lxml>=5", "playwright>=1.4", "curl_cffi>=0.7"]
[project.scripts]
gather = "gather.cli:main"
[project.urls]
Homepage = "https://github.com/HarperZ9/gather"
Repository = "https://github.com/HarperZ9/gather"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.mypy]
python_version = "3.11"
files = ["src/gather"]