forked from gonzaloflirt/link-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (58 loc) · 1.34 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (58 loc) · 1.34 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
64
[build-system]
requires = ["pybind11>=3.0.4", "scikit-build-core>=0.12.2"]
build-backend = "scikit_build_core.build"
[project]
name = "LinkPython-extern"
version = "1.3.0a2"
description = "A Python wrapper for Ableton Link, wheels included!"
requires-python = ">=3.9,<3.15"
license = "Unlicense"
license-files = ["LICENSE.md"]
authors = [{ name = "gonzaloflirt" }]
maintainers = [{ name = "thegamecracks" }]
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: C++",
"Programming Language :: Python",
"Topic :: System :: Networking",
]
keywords = [
"ableton",
"ableton link",
"link",
"music",
"sync",
]
[dependency-groups]
dev = ["pytest>=8.4.2"]
[project.urls]
Homepage = "https://github.com/thegamecracks/link-python"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--ignore=modules/",
]
[tool.scikit-build]
minimum-version = "build-system.requires"
cmake.version = "CMakeLists.txt"
sdist.include = ["modules"]
sdist.exclude = [
"*.pdf",
".github",
"assets",
"ci",
"docs",
"example",
"examples",
"tests",
]
wheel.packages = ["src-py/link"]
[tool.uv]
cache-keys = [
{ dir = "src" },
{ dir = "src-py" },
{ file = "pyproject.toml" },
{ git = { commit = true } },
]