e5d785f511
- add README live-demo badge - tighten engine validation for jump grids and detector indices - replace flaky FastAPI TestClient web tests with direct handler tests - remove unused httpx dev dependency - clean stale frontend comments - re-execute notebooks with clean sequential outputs
39 lines
734 B
TOML
39 lines
734 B
TOML
[build-system]
|
|
requires = ["setuptools>=69"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "adaptive-barrier-monitor"
|
|
version = "0.4.7"
|
|
description = "Brownian first-passage models and a state-dependent barrier-monitoring demo"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"numpy>=1.26,<3",
|
|
"scipy>=1.12,<2",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
notebooks = [
|
|
"matplotlib>=3.8,<4",
|
|
"pandas>=2.2,<4",
|
|
"sympy>=1.12,<2",
|
|
"requests>=2.31,<3",
|
|
"jupyterlab>=4,<5",
|
|
]
|
|
webapp = [
|
|
"fastapi>=0.110,<1",
|
|
"uvicorn[standard]>=0.27,<1",
|
|
"pydantic>=2,<3",
|
|
]
|
|
dev = [
|
|
"pytest>=8,<9",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|
|
|
|
[tool.pytest.ini_options]
|
|
addopts = "-q"
|
|
testpaths = ["tests"]
|