Compare commits

..

No commits in common. "01633f06dacce048a16bab354df2f19f4a5e938a" and "c1b2a543cc08e850ade18bc4d41be890a47287b7" have entirely different histories.

View File

@ -9,9 +9,6 @@ repository = "https://github.com/onyx-and-iris/voicemeeter-api-python"
packages = [{ include = "voicemeeterlib" }] packages = [{ include = "voicemeeterlib" }]
[tool.poetry.requires-plugins]
poethepoet = "^0.32.1"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3.10"
tomli = { version = "^2.0.1", python = "<3.11" } tomli = { version = "^2.0.1", python = "<3.11" }
@ -27,18 +24,18 @@ virtualenv-pyenv = "^0.5.0"
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"
[tool.poe.tasks] [tool.poetry.scripts]
dsl.script = "scripts:ex_dsl" dsl = "scripts:ex_dsl"
events.script = "scripts:ex_events" events = "scripts:ex_events"
gui.script = "scripts:ex_gui" gui = "scripts:ex_gui"
levels.script = "scripts:ex_levels" levels = "scripts:ex_levels"
midi.script = "scripts:ex_midi" midi = "scripts:ex_midi"
obs.script = "scripts:ex_obs" obs = "scripts:ex_obs"
observer.script = "scripts:ex_observer" observer = "scripts:ex_observer"
basic.script = "scripts:test_basic" basic = "scripts:test_basic"
banana.script = "scripts:test_banana" banana = "scripts:test_banana"
potato.script = "scripts:test_potato" potato = "scripts:test_potato"
all.script = "scripts:test_all" all = "scripts:test_all"
[tool.tox] [tool.tox]
legacy_tox_ini = """ legacy_tox_ini = """
@ -99,7 +96,6 @@ unfixable = []
# Allow unused variables when underscore-prefixed. # Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format] [tool.ruff.format]
# Like Black, use double quotes for strings. # Like Black, use double quotes for strings.
quote-style = "double" quote-style = "double"