blob: 5678c55451317d14404153ef06d117e3ee45c207 [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",
Harald Welted75fa3f2023-05-31 20:47:55 +020023 "pycryptodomex",
Vadim Yanitskiybca01522023-05-28 17:13:19 +070024 "packaging",
Harald Welte0b327252022-08-11 17:37:46 +020025 "smpp.pdu @ git+https://github.com/hologram-io/smpp.pdu",
Harald Welte9813dc92021-04-03 15:13:13 +020026 ],
27 scripts=[
28 'pySim-prog.py',
29 'pySim-read.py',
Vadim Yanitskiye63cb2c2023-05-05 15:12:17 +070030 'pySim-shell.py',
31 'pySim-trace.py',
Harald Welte9813dc92021-04-03 15:13:13 +020032 ]
33)