28 lines
622 B
TOML
28 lines
622 B
TOML
[project]
|
|
name = "mizan-core"
|
|
version = "0.1.0"
|
|
license = "Elastic-2.0"
|
|
description = "Mizan Python core — HMAC cache keys, MWT identity. Framework-agnostic primitives shared by every Python backend adapter."
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"PyJWT>=2.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/mizan_core"]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["src"]
|
|
testpaths = ["tests"]
|
|
python_classes = ["*Tests", "*Test", "Test*"]
|
|
python_functions = ["test_*"]
|