-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (52 loc) · 1.56 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (52 loc) · 1.56 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
[project]
name = "sessionprep"
dynamic = ["version"]
description = "Batch audio analyzer and normalizer for mix session preparation"
readme = "README.md"
license = { text = "GPL-3.0-or-later" }
requires-python = ">=3.13,<3.14"
dependencies = ["numpy>=1.26", "soundfile>=0.12", "scipy>=1.12"]
[project.scripts]
sessionprep = "sessionprep:process_files"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
path = "sessionpreplib/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["sessionpreplib", "sessionprepgui"]
# Include the CLI script at the top level
include = [
"sessionpreplib/**",
"sessionprepgui/**",
"sessionprep.py",
"sessionprep-gui.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[project.optional-dependencies]
cli = ["rich>=13.0"]
gui = [
"PySide6>=6.10.2",
"sounddevice>=0.5.5",
# FIXME: grpcio has no ARM64 Windows wheel and cannot be compiled from
# source with MSVC on ARM64 (grpc/grpc#39362, grpc/grpc#39624).
# Remove the platform_machine marker once grpcio publishes win_arm64 wheels.
"py-ptsl>=600.2.0; platform_machine != 'ARM64'",
"dawproject @ git+https://github.com/roex-audio/dawproject-py.git@70e65aeb7b260cfec3871ca89ca8d80022c44496",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pyinstaller>=6.0",
"Pillow>=10.0",
"nuitka>=4.0",
"zstandard>=0.25.0",
"rich>=13.0",
"patchelf>=0.17.2.4; sys_platform != 'win32'",
"pylint>=4.0.5",
]