-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (64 loc) · 2.18 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "timonelo"
version = "1.0.0"
description = "Cruise Intelligence Platform providing explainable, evidence-based answers about ships, cabins, routes and ports."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Timonelo Engineering Team" }
]
keywords = [
"cruise",
"maritime",
"intelligence",
"evidence-based",
"digital-twin",
"spatial-reasoning"
]
dependencies = [
"pydantic>=2.0",
"pyyaml>=6.0",
"jsonschema>=4.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pypdf>=5.0",
"pdfplumber>=0.10",
# Pinned, not floated. The Deck 14 geometry proof records
# `extraction_tool: "PyMuPDF 1.26.4"`, and
# test_transform_is_explicit_and_deterministic re-runs extract() and
# compares against that committed artifact. A newer PyMuPDF returns
# different vector drawing records, so an unpinned range makes a
# reproducibility test fail on a dependency release rather than on a
# code change. Bump this and the proof together, never separately.
"pymupdf==1.26.4",
"brotli>=1.1",
"zstandard>=0.22",
"warcio>=1.7.4"
]
harvester = [
"crawl4ai>=0.9.2",
"playwright>=1.40.0"
]
[project.urls]
Homepage = "https://github.com/FHoffarth/timonelo"
Documentation = "https://github.com/FHoffarth/timonelo/tree/main/docs"
Repository = "https://github.com/FHoffarth/timonelo.git"
[tool.setuptools.packages.find]
where = ["src"]
# Without this, `import timonelo` resolves through whatever editable install
# happens to be on the machine rather than this checkout. `tests/__init__.py`
# makes pytest prepend the repository ROOT, which holds no `timonelo` package,
# so nothing shadows a stale `__editable__.timonelo-*.pth` entry and the suite
# can silently exercise a different working copy. Prepending `src` pins the
# tests to the source they are committed alongside.
[tool.pytest.ini_options]
pythonpath = ["src"]
# Both roots: `spikes/` carries 22 tests that a bare `pytest` collects today.
# Listing only `tests` here would silently shrink the quality gate.
testpaths = ["tests", "spikes"]