2022-06-16 14:07:12 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "voicemeeter-api"
|
2023-08-09 16:37:10 +01:00
|
|
|
version = "2.4.5"
|
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"
|
|
|
|
|
2023-07-10 17:45:38 +01:00
|
|
|
packages = [{ include = "voicemeeterlib" }]
|
2022-06-16 14:07:12 +01:00
|
|
|
|
|
|
|
[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"
|
2023-06-23 18:18:42 +01:00
|
|
|
tox = "^4.6.3"
|
2022-06-16 14:07:12 +01:00
|
|
|
|
|
|
|
[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"
|
2023-06-23 18:18:42 +01:00
|
|
|
events = "scripts:ex_events"
|
2023-06-24 23:30:35 +01:00
|
|
|
gui = "scripts:ex_gui"
|
2023-06-23 18:18:42 +01:00
|
|
|
levels = "scripts:ex_levels"
|
2022-11-07 20:21:50 +00:00
|
|
|
midi = "scripts:ex_midi"
|
|
|
|
obs = "scripts:ex_obs"
|
|
|
|
observer = "scripts:ex_observer"
|
2023-06-23 18:18:42 +01:00
|
|
|
test = "scripts:test"
|
|
|
|
|
|
|
|
[tool.tox]
|
|
|
|
legacy_tox_ini = """
|
|
|
|
[tox]
|
|
|
|
envlist = py310,py311
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
allowlist_externals = poetry
|
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run pytest tests/
|
|
|
|
"""
|