Skip to content

Commit 49ba7dd

Browse files
committed
Add requirements.txt for Python dependencies
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent fef1922 commit 49ba7dd

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
.gdb_history
44
target/
55

6+
venv
7+
68
# editor files
79
.vscode/*
810
!.vscode/*.md

python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Python script to control Framework Laptop 16 Input Modules
22

3-
Requirements: Python, [PySimpleGUI](https://www.pysimplegui.org) and optionally [pillow](https://pillow.readthedocs.io/en/stable/index.html)
4-
3+
Requirements: Python, pyserial, [PySimpleGUI](https://www.pysimplegui.org) and optionally [pillow](https://pillow.readthedocs.io/en/stable/index.html)
4+
For convenience install dependencies via: `python3 -m pip install -r requirements.txt`.
55
Use `control.py`. Either the commandline, see `control.py --help` or the graphical version: `control.py --gui`
66

77
```

requirements.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
get-key==1.60.0
2+
Pillow==10.0.0
3+
pyserial==3.5
4+
PySimpleGUI==4.60.5

0 commit comments

Comments
 (0)