mirror of
https://github.com/onyx-and-iris/voicemeeter-api-python.git
synced 2024-11-15 16:40:46 +00:00
35 lines
801 B
TOML
35 lines
801 B
TOML
[tool.poetry]
|
|
name = "voicemeeter-api"
|
|
version = "1.0.0"
|
|
description = "A Python wrapper for the Voiceemeter API"
|
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/onyx-and-iris/voicemeeter-api-python"
|
|
|
|
packages = [
|
|
{ include = "voicemeeterlib" },
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
tomli = { version = "^2.0.1", python = "<3.11" }
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^7.1.2"
|
|
pytest-randomly = "^3.12.0"
|
|
pytest-repeat = "^0.9.1"
|
|
black = "^22.3.0"
|
|
isort = "^5.10.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
dsl = "scripts:ex_dsl"
|
|
midi = "scripts:ex_midi"
|
|
obs = "scripts:ex_obs"
|
|
observer = "scripts:ex_observer"
|
|
test ="scripts:test"
|