e6602c40bf
- UICC Toolkit tag 80 nested inside EA (EA 12 80 10 ...) - ram-tk-mode value ea (was 80), label 'UICC Toolkit (Tag EA)' - SIM (CA) access domain FIRST in payload, blank = 00 - Menu entries: 2×m pairs (i=1 first, i=m last, else 0000) - CA/EA lengths via berLenStr() (supports 81xx long form) - UICC trailing 'Maximum number of services' byte (ram-tk-services) - DELETE: P1=00 fixed, mode in P2 (80E4 00 <mode> ...) - STORE DATA: ram-enc 00/40/80/C0/E0 with correct labels - LOAD: P1 fixed to 0x80 (last block) - USIM SELECT: selP1 0x09 -> 0x00 (select by file id) - ram.test.js: 11 exact-hex tests from exchange vectors - v1.8.1, SW cache otaman-v9
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.8.1"
|
|
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*"] |