mirror of https://gerrit.osmocom.org/pysim
python libraires and command line tools for SIM/UICC/USIM/ISIM card analysis and programming.
https://osmocom.org/projects/pysim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
662 B
29 lines
662 B
from setuptools import setup
|
|
|
|
setup(
|
|
name='pySim',
|
|
version='1.0',
|
|
packages=['pySim', '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",
|
|
"serial",
|
|
"pytlv",
|
|
"cmd2 >= 1.3.0, < 2.0.0",
|
|
"jsonpath-ng",
|
|
"construct >= 2.9.51",
|
|
"bidict",
|
|
"gsm0338",
|
|
"termcolor",
|
|
"colorlog",
|
|
"pycryptodome"
|
|
],
|
|
scripts=[
|
|
'pySim-prog.py',
|
|
'pySim-read.py',
|
|
'pySim-shell.py'
|
|
]
|
|
)
|
|
|