studies/202602_AmazonConnect -> studies/202602_TEI_Amazon_Connect, rebuilt as pattern Variant 4 (TEI composite reproduction): - teicalc/ self-contained engine (stdlib-only): Forrester's tables as the never-edited verbatim anchor, NPV/ROI/payback + risk adjustment transplanted from core/calculations, ClientDrivers overlay (contacts/ agents/fixed driver map, growth re-base, identity at composite scale), scenario stress with core-identical semantics - one deliverable notebook (business_case.ipynb): widget-pair sidebar drivers, published-vs-overlay KPI columns, cash-flow/waterfall/scenario charts, verification gate, backstage JSON data appendix - gate + tests reproduce the published totals within PDF rounding: NPV $78.7M / ROI 342% / payback <6 months (engine $78,713,492 / 342.48% / 0.7 months); 27 study tests, headless nbconvert green, stage simulation leak-free, exports carry the appendix - old Athena workflow (00_provision..04_export, config.py, seed_data.py) deleted; git history preserves it; root test fixture repointed to teicalc.anchor - docs: study README rewritten; root README points new studies at template/MercuryNotebook; pattern doc stale ctm-token-calculator paths now cite studies/202607_CTM_GenesysCX; Variant 4 cites this study as its realized reference Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
37 lines
895 B
TOML
37 lines
895 B
TOML
[build-system]
|
|
requires = ["setuptools>=68"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "teicalc"
|
|
version = "0.1.0"
|
|
description = "Amazon Connect TEI (Forrester, Feb 2026) — composite reproduction + client overlay"
|
|
requires-python = ">=3.10"
|
|
# The notebook is the deliverable (served with Mercury, exported via
|
|
# nbconvert, tables via tabulate) — the whole toolchain is a required
|
|
# runtime dependency, not an extra. `pip install -e .` must be enough.
|
|
dependencies = [
|
|
"pandas>=2.0",
|
|
"plotly>=5.18",
|
|
"openpyxl>=3.1",
|
|
"mercury>=3.2",
|
|
"jupyterlab>=4.0",
|
|
"ipywidgets>=8.0",
|
|
"nbconvert>=7",
|
|
"tabulate>=0.9",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = ["pytest>=7.4", "mypy>=1.8"]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["teicalc*"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
addopts = "-q"
|
|
|
|
[tool.mypy]
|
|
strict = true
|
|
packages = ["teicalc"]
|