blob: a02e32703d4717b065e416f0f2ffc9e011e2e142 [file] [log] [blame]
from setuptools import setup
setup(
name='pySim',
version='1.0',
packages=['pySim'],
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"
"jsonpath-ng"
],
scripts=[
'pySim-prog.py',
'pySim-read.py',
'pySim-shell.py'
]
)