87052212b7
The proactive command log showed 'Cmd 0x01' for REFRESH: 0x01 was missing from both CMD_NAMES (frontend) and PROACTIVE_TYPE_NAMES (server), so the log fell back to the generic placeholder. Both tables now carry the full TS 102 223 9.4 command type list (REFRESH, MORE TIME, POLLING OFF, SET UP CALL, SEND SS/USSD/DTMF, GEOGRAPHICAL LOCATION REQUEST, SET UP IDLE MODE TEXT, PERFORM CARD APDU, POWER ON/OFF CARD, GET READER STATUS, RUN AT COMMAND, LANGUAGE NOTIFICATION, SERVICE SEARCH/INFORMATION, DECLARE SERVICE, frames, multimedia, COMMAND CONTAINER, ...). - tests: event_forms CMD_NAMES cases; new tests/test_proactive_names.py (REFRESH + spec spot checks).
21 lines
702 B
TOML
21 lines
702 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pysim-simple-server"
|
|
version = "2.7.17"
|
|
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*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
pysim_simple_server = ["data/*.json", "data/*.LICENSE"] |