2022-06-16 14:07:12 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "voicemeeter-api"
|
2022-10-27 08:50:27 +01:00
|
|
|
version = "0.9.2"
|
2022-06-16 14:07:12 +01:00
|
|
|
description = "A Python wrapper for the Voiceemeter API"
|
|
|
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
2022-06-16 16:17:33 +01:00
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/onyx-and-iris/voicemeeter-api-python"
|
|
|
|
|
2022-06-16 14:07:12 +01:00
|
|
|
packages = [
|
|
|
|
{ include = "voicemeeterlib" },
|
|
|
|
]
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-09-03 16:28:19 +01:00
|
|
|
python = "^3.10"
|
|
|
|
tomli = { version = "^2.0.1", python = "<3.11" }
|
2022-06-16 14:07:12 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
pytest = "^7.1.2"
|
|
|
|
pytest-randomly = "^3.12.0"
|
2022-07-16 21:24:51 +01:00
|
|
|
pytest-repeat = "^0.9.1"
|
2022-06-16 14:07:12 +01:00
|
|
|
black = "^22.3.0"
|
|
|
|
isort = "^5.10.1"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-10-28 02:14:08 +01:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2022-11-07 20:21:50 +00:00
|
|
|
dsl = "scripts:ex_dsl"
|
|
|
|
midi = "scripts:ex_midi"
|
|
|
|
obs = "scripts:ex_obs"
|
|
|
|
observer = "scripts:ex_observer"
|