-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (79 loc) · 2.61 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (79 loc) · 2.61 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[project]
name = "tallyman-data"
version = "0.0.1"
description = "tallyman — deconstructed notebook platform"
requires-python = ">=3.13,<3.14"
readme = "README.md"
dependencies = [
"xorq==0.3.26",
"fastmcp>=2.0",
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"httpx>=0.27",
"click>=8.1",
"pydantic>=2.7",
"pandas>=2.2",
"pyarrow>=16",
"sse-starlette>=2.1",
"tomli-w>=1.0",
# We pin requires-python to <3.14 because buckaroo's pyarrow constraint on
# 3.14+ doesn't compose with xorq's under uv's lockfile resolver.
"tornado>=6.0",
"polars",
"buckaroo==0.15.3",
"markdown>=3.10.2",
"pygments>=2.20.0",
# No duckdb extra: the only backend is xorq's built-in datafusion
# (xorq-datafusion, a hard dep of xorq). Base ibis-framework brings no
# backend; nothing in this project uses a duckdb connection.
"ibis-framework>=12.0.0",
"geopandas>=1.1.3",
"h3>=4.4.2",
"vl-convert-python>=1.9.0.post1",
"pillow>=12.2.0",
"scipy>=1.17.1",
"scikit-learn>=1.4,<2.0",
"seaborn>=0.13.2",
]
[project.scripts]
tallyman = "tallyman_cli.main:cli"
[dependency-groups]
dev = [
"pytest>=8",
"ruff>=0.15.15",
# marimo is only needed to run the exported notebooks and to validate the
# marimo export in tests; the package generates marimo source without it.
"marimo>=0.23.9",
"twine>=6.2.0",
"playwright>=1.60.0",
"psutil>=7.2.2",
"websockets>=16.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = [
"src/tallyman_core",
"src/tallyman_xorq",
"src/tallyman_mcp",
"src/tallyman_companion",
"src/tallyman_cli",
]
[tool.ruff]
line-length = 120
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-m 'not integration and not cache_lab and not perf and not perf_tier_a'"
markers = [
"integration: spawns real subprocesses (Buckaroo, MCP stdio); ~3-15s each",
"cache_lab: adversarial cache-behavior measurement suite; run on demand when touching result_cache/identity/reset (see tests/test_cache_lab.py)",
"perf: local-only Tier-B perf integration over the real parking corpus; needs the on-disk catalog, skips when absent (see tests/test_perf_integration.py)",
"perf_tier_a: local-only Tier-A perf calibration — real Buckaroo subprocess + Playwright browser to data-grid-visible, calibrates the Tier-B proxy; heavy, skips without corpus/browser (see tests/test_perf_tier_a.py)",
]
filterwarnings = [
"ignore::UserWarning:xorq.ibis_yaml.translate",
]