Add requirements.txt and correct the dependency list
Add a requirements file (pyscard, opencv-python, openpyxl) so users can pip install -r requirements.txt. Remove the incorrect cryptography dependency from the README - all crypto uses the Python standard library.
This commit is contained in:
@@ -123,13 +123,13 @@ with `qr_to_sheet.py`.
|
||||
## Requirements
|
||||
|
||||
- Python 3.9+
|
||||
- `pyscard`, `cryptography`, `openpyxl` (for reading legacy `.xlsx`), and
|
||||
`opencv-python` (for QR decoding).
|
||||
- `pyscard` (smartcard access), `opencv-python` (QR decoding), and `openpyxl`
|
||||
(reading legacy `.xlsx`). All cryptography uses the Python standard library.
|
||||
- For writing to a card: a PC/SC reader with the Apex (over NFC) or a JavaCard
|
||||
carrying the applet presented to it.
|
||||
|
||||
```
|
||||
pip install pyscard cryptography openpyxl opencv-python
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user