21 lines
401 B
TOML
21 lines
401 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools>=68"]
|
||
|
|
build-backend = "setuptools.backends.legacy:build"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "ableton-osc"
|
||
|
|
version = "1.0.0"
|
||
|
|
description = "Full Ableton Live 11 OSC remote script"
|
||
|
|
requires-python = ">=3.8"
|
||
|
|
dependencies = []
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
dev = [
|
||
|
|
"python-osc>=1.8",
|
||
|
|
"pytest>=7",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
where = ["."]
|
||
|
|
include = ["AbletonOSC*"]
|