Files
pysim-local/setup.py
Harald Welte 0d4e98a2ac pySim-shell: JSONpath support for updating files/records
Change-Id: Iad09b3d878b8b58ad34cb549c80f8a6eb3149faa
2021-04-07 16:45:12 +00:00

24 lines
491 B
Python

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'
]
)