-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.18 KB
/
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
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["scikit_build_core", "pybind11"]
build-backend = "scikit_build_core.build"
[project]
name = "neo"
version = "0.1.0"
description = "Audio DSP library"
readme = "README.md"
authors = [{ name = "Tobias Hienzsch", email = "[email protected]" }]
requires-python = ">=3.9"
dependencies = ["numpy"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/neo-sonar/neo"
Issues = "https://github.com/neo-sonar/neo/issues"
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[tool.scikit-build]
cmake.minimum-version = "3.23"
cmake.source-dir = "."
cmake.targets = ["_neo"]
wheel.packages = ["extra/python/src/neo"]
wheel.expand-macos-universal-tags = true
[tool.pytest.ini_options]
minversion = "7.0"
addopts = ["-ra", "--strict-markers", "--strict-config"]
xfail_strict = true
filterwarnings = ["error"]
testpaths = ["extra/python/test/*"]