The auth-provider concern becomes a dedicated Django system. Removed from mizan: the Django integration (mizan/integrations/allauth — auth contexts + ~15 form wrappers), the legacy/ pre-kernel TypeScript client, the allauth and webauthn dependency extras (fido2 was consumed only by the WebAuthn form wrappers), and the HEADLESS_JWT_* settings fallbacks — the allauth-headless compat seam belongs to the dedicated system, not to mizan's JWT module. Duplicate-name registration in discovery now surfaces a warning instead of passing silently. README claims updated to point at mizan-allauth; the root README's hand-maintained status matrix collapsed into the tests/afi conformance suite as the parity authority. OWED_SURFACE.md refreshed against the post-extraction tree (22 units). mizan-django suite: 350 passed, 21 skipped. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
49 lines
965 B
TOML
49 lines
965 B
TOML
[project]
|
|
name = "mizan"
|
|
version = "1.0.1"
|
|
license = "Elastic-2.0"
|
|
description = "Django + React server functions framework"
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"mizan-core",
|
|
"django>=5.0",
|
|
"django-ninja>=1.0",
|
|
"django-readers>=2.0",
|
|
"pydantic>=2.0",
|
|
"PyJWT>=2.0",
|
|
]
|
|
|
|
[tool.uv.sources]
|
|
mizan-core = { path = "../../cores/mizan-python", editable = true }
|
|
|
|
[project.optional-dependencies]
|
|
cache = [
|
|
"redis>=5.0",
|
|
]
|
|
channels = [
|
|
"channels>=4.0",
|
|
"channels-redis>=4.0",
|
|
]
|
|
shapes = [
|
|
"django-readers>=2.0",
|
|
]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-django>=4.9",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mizan"]
|
|
|
|
[tool.pytest.ini_options]
|
|
DJANGO_SETTINGS_MODULE = "tests.settings"
|
|
pythonpath = ["src", "."]
|
|
testpaths = ["src/mizan/tests"]
|
|
python_classes = ["*Tests", "*Test", "Test*"]
|
|
python_functions = ["test_*"]
|