Initial commit

This commit is contained in:
henryruhs
2025-06-30 18:28:34 +02:00
commit 83d3ccdc7e
14 changed files with 245 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
import subprocess
from shutil import which
def install() -> None:
subprocess.run([ which('pip'), 'install', '-r', 'requirements.txt' ])