54dfb2f6b6
Key fix: re-add chained C0000000 (GET RESPONSE Le=00) in paginate() so the full GP APDU inside SCP80 is 80F2<p1>p2024F0000C0000000, matching the working tool. The card's SCP80 layer executes both commands internally (GET STATUS → 61XX → GET RESPONSE) and puts the final 9000 + data in the PoR. Also: server logging improvements (RAM RESPONSE-PACKET label, no truncation of FETCH/PoR hex), docs for /api/ram-install endpoint, minor test fix.
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 = "1.9.17"
|
|
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*"] |