eb21715050
pysimSendOta wrote its progress/verdict into #pysim-status - the shared header line owned by connect/equip/poll logic - clobbering the card status shown under 'Equip card'. OTA outcomes now live exclusively on the Secured Packet page: - send start: small gray 'Sending OTA...' in #sp-send-result - verdicts: big #sp-por-status + details line, as before - header #pysim-status untouched by OTA flows Version housekeeping: v1.9.6 -> 1.9.7 everywhere; SW cache otaman-v17 -> otaman-v18. Also realigns pyproject.toml which the multi-amend rounds had left stale at 1.9.5.
18 lines
613 B
TOML
18 lines
613 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "pysim-otaman-server"
|
|
version = "1.9.7"
|
|
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*"] |