mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-16 18:38:32 +03:00
As the input phone number ("address") might be of an odd length of
digits, let's use PaddedBcdAdapter to fix two problems:
1) strip any potential trailing f in decoding
2) fix truncation of last digit during encoding
Change-Id: I1e9865e172bc29b8a31c281106d903934e81c686
Depends: pyosmocom Ib5afb5ab5c2bc9b519dc92818fc6974f7eecba16 (0.0.12
61 lines
1.4 KiB
Python
61 lines
1.4 KiB
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='pySim',
|
|
version='1.0',
|
|
packages=[
|
|
'pySim',
|
|
'pySim.apdu',
|
|
'pySim.apdu_source',
|
|
'pySim.esim',
|
|
'pySim.esim.saip',
|
|
'pySim.global_platform',
|
|
'pySim.legacy',
|
|
'pySim.transport',
|
|
],
|
|
url='https://osmocom.org/projects/pysim/wiki',
|
|
license='GPLv2',
|
|
author_email='simtrace@lists.osmocom.org',
|
|
description='Tools related to SIM/USIM/ISIM cards',
|
|
install_requires=[
|
|
"pyscard",
|
|
"pyserial",
|
|
"pytlv",
|
|
"cmd2 >= 1.5.0, < 3.0",
|
|
"jsonpath-ng",
|
|
"construct >= 2.10.70",
|
|
"bidict",
|
|
"pyosmocom >= 0.0.12",
|
|
"pyyaml >= 5.1",
|
|
"termcolor",
|
|
"colorlog",
|
|
"pycryptodomex",
|
|
"packaging",
|
|
"smpp.pdu @ git+https://github.com/hologram-io/smpp.pdu",
|
|
"asn1tools",
|
|
"smpp.twisted3 @ git+https://github.com/jookies/smpp.twisted",
|
|
],
|
|
scripts=[
|
|
'pySim-prog.py',
|
|
'pySim-read.py',
|
|
'pySim-shell.py',
|
|
'pySim-trace.py',
|
|
'pySim-smpp2sim.py',
|
|
],
|
|
package_data={
|
|
'pySim.esim':
|
|
[
|
|
'asn1/rsp/*.asn',
|
|
'asn1/saip/*.asn',
|
|
],
|
|
},
|
|
extras_require={
|
|
"smdpp": [
|
|
"klein",
|
|
"service-identity",
|
|
"pyopenssl",
|
|
"requests",
|
|
]
|
|
},
|
|
)
|