mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-16 18:38:32 +03:00
* setup.py did not install pySim.transport sub-library Change-Id: Ice026a28c4843121591f3404225c7f6aec4df6c7
25 lines
533 B
Python
25 lines
533 B
Python
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",
|
|
"jsonpath-ng",
|
|
"construct",
|
|
],
|
|
scripts=[
|
|
'pySim-prog.py',
|
|
'pySim-read.py',
|
|
'pySim-shell.py'
|
|
]
|
|
)
|