-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 1003 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "iipyper"
version = "0.1.7b0"
description = "A Python package for rapid prototyping with MIDI and OSC"
authors = ["Victor Shepardson <[email protected]>", "Jack Armitage <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Intelligent-Instruments-Lab/iipyper"
documentation = "https://intelligent-instruments-lab.github.io/iipyper/"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
python-rtmidi = "^1.5.7"
fire = "^0.6.0"
mido = "^1.3.0"
python-osc = "^1.8.3"
sounddevice = "^0.4.6"
textual = "~0.67.0"
pydantic = "^2.5.2"
pydantic-numpy = "^4.1.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
mkdocs = "^1.5.3"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
mkdocs-gen-files = "^0.5.0"
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocs-material = "^9.4.8"
mkdocs-material-extensions = "^1.3"
mkdocs-autorefs = "^0.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"