-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
59 lines (52 loc) · 1.13 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
[project]
name = "sunvox-dll-python"
version = "0.4.0.2.1.4.0"
description = "Python ctypes-based wrapper for the SunVox library"
readme = "README.rst"
authors = [
{ name = "Matthew Scott", email = "matt@11craft.com" }
]
requires-python = ">=3.9"
dependencies = []
documentation = "https://sunvox-dll-python.readthedocs.io/en/latest/"
repository = "https://github.com/metrasynth/sunvox-dll-python"
[project.optional-dependencies]
buffered = [
"numpy>=2.0.2",
]
docs = [
"plantweb>=1.3.0",
"radiant-voices>=1.0.3",
"sphinx>=7.4.7",
"sphinx-rtd-theme>=3.0.2",
]
tools = [
"numpy>=2.0.2",
"scipy>=1.13.1",
"tqdm>=4.67.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["sunvox"]
[dependency-groups]
dev = [
"pytest>=8.3.4",
"pytest-watch>=4.2.0",
]
[tool.pytest.ini_options]
addopts = "--doctest-glob='*.rst' --doctest-modules"
testpaths = "sunvox tests"
[tool.ruff]
target-version = "py39"
exclude = [
".git",
".venv",
".idea",
"build",
"dist",
]
[tool.ruff.lint.isort]
case-sensitive = true
lines-after-imports = 2