From f65cca5dea1cae6031accc961b5754d02c52a106 Mon Sep 17 00:00:00 2001 From: Axel Gembe Date: Tue, 10 Oct 2023 18:03:42 +0700 Subject: [PATCH] Fix smartcard pyscard dependency versions and name The version specification is invalid with recent setuptools and also the package name is `pyscard`. See https://github.com/pypa/setuptools/issues/3801 fixes #53 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index accfe24..5ab305d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ packages=find_packages(), install_requires=['hidapi>=0.7.99', 'ecdsa>=0.9'], extras_require = { - 'smartcard': [ 'python-pyscard>=1.6.12-4build1' ] + 'smartcard': [ 'pyscard>=1.6.12' ] }, include_package_data=True, zip_safe=False,