[project] name = "aliro-harness" version = "0.1.0" description = "PC-side test harness for the Aliro Java Card applet: test CA, personalizer, reader log capture" requires-python = ">=3.11" dependencies = [ "cryptography>=42.0", "cbor2>=5.6", "pyscard>=2.0", "pyserial>=3.5", "click>=8.1", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-cov>=5.0", "ruff>=0.4", ] [project.scripts] aliro-trustgen = "aliro_harness.trustgen.cli:main" aliro-personalize = "aliro_harness.personalizer.cli:main" aliro-bench-test = "aliro_harness.reader.cli:main" [build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" [tool.setuptools.packages.find] where = ["src"] [tool.pytest.ini_options] testpaths = ["tests"] addopts = "-ra --strict-markers" [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "B", "UP", "SIM"]