We're creating a 'pyosmocom' pypi module which contains a number of core Osmocom libraries / interfaces that are not specific to SIM card stuff contained here. The main modules moved in this initial step are pySim.tlv, pySim.utils and pySim.construct. utils is split, not all of the contents is unrelated to SIM Cards. The other two are moved completely. Change-Id: I4b63e45bcb0c9ba2424dacf85e0222aee735f411
42 lines
951 B
Python
42 lines
951 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",
|
|
"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',
|
|
]
|
|
)
|