2022-08-07 23:55:51 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "xair-api"
|
2024-02-15 15:19:05 +00:00
|
|
|
version = "2.3.1"
|
2022-08-07 23:55:51 +01:00
|
|
|
description = "Remote control Behringer X-Air | Midas MR mixers through OSC"
|
|
|
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
|
|
|
license = "MIT"
|
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/onyx-and-iris/xair-api-python"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2022-09-05 17:06:11 +01:00
|
|
|
python = "^3.10"
|
2022-08-07 23:55:51 +01:00
|
|
|
python-osc = "^1.8.0"
|
2022-09-05 17:06:11 +01:00
|
|
|
tomli = { version = "^2.0.1", python = "<3.11" }
|
2022-08-07 23:55:51 +01:00
|
|
|
|
2023-08-27 19:13:20 +01:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-02-15 18:47:11 +00:00
|
|
|
pytest = "^7.4.4"
|
2022-08-07 23:55:51 +01:00
|
|
|
pytest-randomly = "^3.12.0"
|
|
|
|
black = "^22.6.0"
|
|
|
|
isort = "^5.10.1"
|
2024-02-15 23:54:31 +00:00
|
|
|
tox = "^4.12.1"
|
2022-08-07 23:55:51 +01:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2022-10-28 21:07:14 +01:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
2022-11-07 20:06:56 +00:00
|
|
|
obs = "scripts:ex_obs"
|
2024-02-08 21:38:30 +00:00
|
|
|
sends = "scripts:ex_sends"
|
2022-11-07 20:06:56 +00:00
|
|
|
xair = "scripts:test_xair"
|
|
|
|
x32 = "scripts:test_x32"
|
2024-02-15 23:54:31 +00:00
|
|
|
all = "scripts:test_all"
|
|
|
|
|
|
|
|
[tool.tox]
|
|
|
|
legacy_tox_ini = """
|
|
|
|
[tox]
|
|
|
|
envlist = py310,py311,py312
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
allowlist_externals = poetry
|
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run pytest tests/
|
|
|
|
"""
|