Python SDK for shellbound Django applications. Provides ShellApp, ShardContext, ShellboundMiddleware. Emits Chronicle events to stdout in dev mode. Includes fix for IndexError in apps.py when DJANGO_SETTINGS_MODULE has no dots (e.g. instance_settings). Shard name now falls back safely without eager default argument parsing. Implements SHELLBOUND-APP-0001 §4 (dev mode). Wired into entropyopposition as of 2026-03-18.
19 lines
470 B
TOML
19 lines
470 B
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "substrate-sdk"
|
|
version = "0.1.0"
|
|
description = "Shellbound application SDK for Python. Build governed applications for the Substrate FFC consortium."
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
license = {text = "Apache-2.0"}
|
|
dependencies = []
|
|
|
|
[project.optional-dependencies]
|
|
django = ["Django>=4.2"]
|
|
all = ["Django>=4.2"]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|