-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathpyproject.toml
54 lines (47 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
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "neural-amp-modeler"
description = "Neural Amp Modeler"
authors = [
{name = "Steven Atkinson", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
dependencies = [
"auraloss==0.3.0",
"matplotlib",
"pydantic>=2.0.0",
"pytorch_lightning",
"scipy",
"sounddevice",
"tensorboard",
"torch",
"tqdm",
"wavio>=0.0.5",
]
dynamic = ["version"]
[project.optional-dependencies]
# Optional features
transformers-compat = [
"transformers>=4", # Issue-294
"numpy<2", # For older PyTorch versions; user must know when to include
]
test = [
"pytest",
"pytest-mock",
"requests",
]
[project.urls]
homepage = "https://github.com/sdatkinson/"
[project.scripts]
nam = "nam.cli:nam_gui"
nam-full = "nam.cli:nam_full"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
write_to = "nam/_version.py"
[tool.setuptools]
packages = ["nam", "nam.train", "nam.train.gui", "nam.train.gui._resources", "nam.models", "nam.models._resources" ]