-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 815 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pvq_manipulation"
version = "0.0.1"
description = "Audio and speech manipulation tools"
authors = [
{ name = "Department of Communications Engineering, Paderborn University", email = "sek@nt.upb.de" }
]
license = { text = "MIT" }
keywords = ["audio", "speech"]
dependencies = [
"torchdiffeq",
"padertorch",
"onnxruntime",
"ipywidgets",
"ipykernel",
"sacred",
"hydra-core",
"PyYAML==6.0.1",
"notebook",
]
[project.optional-dependencies]
py12 = [
"coqui-tts"
]
legacy = [
"TTS",
"creapy @ git+https://gitlab.tugraz.at/speech/creapy.git"
]
dev = [
"pytest",
"black",
"flake8",
"isort"
]
[tool.setuptools.packages.find]
where = ["."]