8b55a7159f
Replaced single-command builders with row-based chain builder: - chainInit/chainAddRow/chainDeleteRow/chainRender - chainSimBuildRowHex/chainRamBuildRowHex per-sub-tab hex builders - Auto-updating chain preview (no Generate button) - GET RESPONSE as fixed row in SIM chain - Le stripping for Case 4 + GET RESPONSE (ETSI TS 102 226) - Each row: command dropdown + context fields + delete x + hex preview - + SIM: SELECT (FID/path/chain/GET RESPONSE), PIN ops, file ops - + USIM: SELECT with FCP requests, silent mode, record ops - + RAM/GP: INSTALL[for install/delete/move], LOAD, STORE DATA, GET STATUS - UICC toolkit nested inside EA (C900 EF00 EA...), SIM CA (EF CA) - Updated tests: 21 SIM + 11 RAM tests for new chain builder API - Removed old genSimUsim/genRam/OPS/updateSimUsimFields and friends - SW cache v35, version 1.9.24
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.24"
|
|
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*"] |