blob: d14ebc6636c8f050b6a250e7538df3e2ca33cbf0 [file] [log] [blame]
Harald Welte9813dc92021-04-03 15:13:13 +02001from setuptools import setup
2
3setup(
4 name='pySim',
5 version='1.0',
Vadim Yanitskiyade366d2023-05-16 17:08:57 +07006 packages=['pySim', 'pySim.transport', 'pySim.apdu', 'pySim.apdu_source'],
Harald Welte9813dc92021-04-03 15:13:13 +02007 url='https://osmocom.org/projects/pysim/wiki',
8 license='GPLv2',
9 author_email='simtrace@lists.osmocom.org',
10 description='Tools related to SIM/USIM/ISIM cards',
11 install_requires=[
12 "pyscard",
13 "serial",
14 "pytlv",
Philipp Maierf8a3d2b2023-05-05 14:01:28 +020015 "cmd2 >= 1.5.0",
Harald Weltee0f9ef12021-04-10 17:22:35 +020016 "jsonpath-ng",
Vadim Yanitskiybdac3f62022-08-29 21:00:41 +070017 "construct >= 2.9.51",
Harald Welte4ae228a2021-05-02 21:29:04 +020018 "bidict",
Robert Falkenbergb07a3e92021-05-07 15:23:20 +020019 "gsm0338",
Vadim Yanitskiybca01522023-05-28 17:13:19 +070020 "pyyaml >= 5.1",
Harald Welte21caf322022-07-16 14:06:46 +020021 "termcolor",
Harald Welte75a58d12022-07-31 15:51:19 +020022 "colorlog",
Vadim Yanitskiybca01522023-05-28 17:13:19 +070023 "pycryptodome",
24 "packaging",
Harald Welte9813dc92021-04-03 15:13:13 +020025 ],
26 scripts=[
27 'pySim-prog.py',
28 'pySim-read.py',
Vadim Yanitskiye63cb2c2023-05-05 15:12:17 +070029 'pySim-shell.py',
30 'pySim-trace.py',
Harald Welte9813dc92021-04-03 15:13:13 +020031 ]
32)