-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1013 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (34 loc) · 1013 Bytes
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
[project]
name = "OpenScofo"
dynamic = ["version"]
authors = [{ name = "Charles K. Neimog", email = "charlesneimog@outlook.com" }]
description = "OpenScofo is an open-source score-following system specifically designed for contemporary music."
readme = "README.md"
requires-python = ">=3.12, <3.15"
dependencies = [
"numpy",
"scipy",
"librosa",
"scikit-learn",
"catboost",
"lightgbm",
"skl2onnx",
"onnxmltools"
]
[build-system]
requires = ["scikit-build-core", "nanobind","librosa","catboost"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
build-dir = "build"
wheel.packages = ["OpenScofo"]
wheel.py-api = "cp312"
cmake.args = [
"-DPD_LIB_DIR=./OpenScofo",
"-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15",
'-DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"',
]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "CMakeLists.txt"
regex = 'project\(OpenScofo[^\)]*VERSION\s+([0-9]+\.[0-9]+\.[0-9]+(?:-[a-zA-Z0-9\.]+)?)'
result = "{0}b1"