-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 866 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 866 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
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aether"
version = "0.1.0"
description = "Project Aether: Parametric VAE for Audio Filtering"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"jax>=0.4.30",
"jaxlib>=0.4.30",
"flax>=0.8.5",
"optax>=0.2.0",
"numpy>=1.26.0",
"scipy>=1.11.0",
"soundfile>=0.12.0",
"librosa>=0.10.0",
"torch>=2.0.0", # Used for DataLoader utilities
"matplotlib>=3.8.0",
"pyserial",
"gradio>=6.5.1",
"tqdm>=4.67.3",
]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"ruff>=0.5.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src/aether"]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]