mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-16 18:38:32 +03:00
0.0.3 fixes an important problem related to enabling callers of build_construct() to pass in a total_len value in order to specify the target output size. Change-Id: I01687bb54e65bf5cc318745df588c3d6ea14eb83
42 lines
960 B
Python
42 lines
960 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='pySim',
|
|
version='1.0',
|
|
packages=[
|
|
'pySim',
|
|
'pySim.apdu',
|
|
'pySim.apdu_source',
|
|
'pySim.esim',
|
|
'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",
|
|
"jsonpath-ng",
|
|
"construct >= 2.9.51",
|
|
"bidict",
|
|
"pyosmocom >= 0.0.3",
|
|
"pyyaml >= 5.1",
|
|
"termcolor",
|
|
"colorlog",
|
|
"pycryptodomex",
|
|
"packaging",
|
|
"smpp.pdu @ git+https://github.com/hologram-io/smpp.pdu",
|
|
],
|
|
scripts=[
|
|
'pySim-prog.py',
|
|
'pySim-read.py',
|
|
'pySim-shell.py',
|
|
'pySim-trace.py',
|
|
]
|
|
)
|