debug script added to pyproject.toml

bump to major version 1.0.0

min python required version changed to 3.8
This commit is contained in:
2023-06-28 02:49:15 +01:00
parent 4349b28123
commit 418b97254f
3 changed files with 281 additions and 33 deletions

7
scripts.py Normal file
View File

@@ -0,0 +1,7 @@
import subprocess
from pathlib import Path
def ex_debug():
path = Path.cwd() / "examples" / "debug" / "."
subprocess.run(["py", str(path)])