ef9faabdf8
- byte 30 b5-b8 were marked RFU; now Proactive UICC: ACTIVATE, GEOGRAPHICAL LOCATION REQUEST, PROVIDE LOCAL INFORMATION (Broadcast Network Information) and "Steering of Roaming for I-WLAN" REFRESH support (TS 102 223 cl. 5.2; TS 31.111 cl. 5.2 names) - byte 34 b8 "Reserved for future use" -> "Deprecated, bit = 0" (TS 102 223 cl. 5.2) - mirrors the UICC_SPECS.md audit fixes (byte 30/34 tables, ESN/MEID bit positions b5/b6, Data Connection Status Change in extra events) - SW cache simple-v207; 454 frontend / 298 Python tests green
18 lines
613 B
TOML
18 lines
613 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pysim-simple-server"
|
|
version = "2.7.4"
|
|
description = "HTTP REST server wrapping pysim for the SIMple PWA"
|
|
requires-python = ">=3.8"
|
|
# pysim is a git-only dependency installed explicitly by setup.bat/setup.sh.
|
|
# Declaring it here would make pip resolve its full tree (including the SMPP
|
|
# bridge -> Twisted -> twisted-iocpsupport, which needs MSVC on Windows).
|
|
|
|
[project.scripts]
|
|
pysim-simple-server = "pysim_simple_server.__main__:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["pysim_simple_server*"] |