-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 2.01 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (54 loc) · 2.01 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "openwig"
version = "0.1.3"
description = "Algorithmic composition for Bitwig Studio. Write Python, get songs."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "Axyom" }]
keywords = ["bitwig", "music", "composition", "sdk", "daw", "algorithmic", "midi"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Multimedia :: Sound/Audio :: MIDI",
"Operating System :: Microsoft :: Windows",
]
dependencies = [
"numpy>=1.26",
"PyAudioWPatch>=0.2.12.6 ; sys_platform == 'win32'",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"mkdocs-material>=9.5",
]
[project.scripts]
openwig = "openwig.cli.__main__:main"
[project.urls]
Homepage = "https://github.com/Axyom/openwig"
Source = "https://github.com/Axyom/openwig"
# ─── Bitwig version this SDK targets ────────────────────────────────────────
# The runtime handshake (openwig.bridge) refuses to connect if the live
# Bitwig version is not in this set - the SDK reaches into private internals
# that move across releases. Bump deliberately, never auto.
[tool.openwig]
# host.getHostVersion() reports major.minor only - see openwig/__init__.py.
supported-bitwig-versions = ["6"]
[tool.pytest.ini_options]
# Only collect the tests/ tree, so nothing under scratch/ is ever picked up.
testpaths = ["tests"]
addopts = "-q"
markers = [
"live: tests that require a running Bitwig Studio with the OpenwigBridge controller enabled (opt-in via OPENWIG_LIVE=1).",
]
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
openwig = ["controller/*.js", "controller/*.json"]