From 83222abf2e03f7bc36cb950e736aa34541f46143 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 13 Aug 2023 11:48:18 +0200 Subject: [PATCH] setup.py: fix package name The package providing the serial python module seems to be called pyserial, which also matches what's written in requirements.txt. Change-Id: I71ef6a19a487101e552219f10f2fa6215b966abd --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f7764430..620e2461 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( description='Tools related to SIM/USIM/ISIM cards', install_requires=[ "pyscard", - "serial", + "pyserial", "pytlv", "cmd2 >= 1.5.0", "jsonpath-ng",