f411f12c56
- each result group shows the command label (GET DATA FF21, GET STATUS P1=80/40/10, GET DATA 0085, INSTALL/LOAD) - GET STATUS pages deduplicate by AID: the continuation page re-includes its search criterion, which made the last entry of every listing appear twice - the GET DATA 0085 answer is decoded (host/agent/uri, PSK identity + KVN/KID from the unframed [14][id][02 KVN/KID] security TLV, retry counter and timer, connection block with APN and destination address) instead of a truncated hex dump; undecodable results show the full hex now - tests: admin-params decode with the live sample, command labels (346 frontend, 196 python); service worker v147
18 lines
614 B
TOML
18 lines
614 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pysim-otaman-server"
|
|
version = "2.1.10"
|
|
description = "HTTP REST server wrapping pysim for the OTAMan 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-otaman-server = "pysim_otaman_server.__main__:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["pysim_otaman_server*"] |