diff --git a/pyproject.toml b/pyproject.toml index 5c37b67..1ec628f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "voicemeeter-api" -version = "2.6.1" +version = "2.7.0" description = "A Python wrapper for the Voiceemeter API" authors = [ {name = "Onyx and Iris",email = "code@onyxandiris.online"} @@ -37,6 +37,7 @@ levels.script = "scripts:ex_levels" midi.script = "scripts:ex_midi" obs.script = "scripts:ex_obs" observer.script = "scripts:ex_observer" +eqedit.script = "scripts:ex_eqedit" test-basic.script = "scripts:test_basic" test-banana.script = "scripts:test_banana" test-potato.script = "scripts:test_potato" diff --git a/scripts.py b/scripts.py index 821bcff..76e9aa6 100644 --- a/scripts.py +++ b/scripts.py @@ -37,6 +37,11 @@ def ex_observer(): subprocess.run([sys.executable, str(scriptpath)]) +def ex_eqedit(): + scriptpath = Path.cwd() / 'examples' / 'eq_edit' / '.' + subprocess.run([sys.executable, str(scriptpath)]) + + def test_basic(): subprocess.run(['tox'], env=os.environ.copy() | {'KIND': 'basic'})