-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.48 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
[project]
name = "wet-toast-talk-radio"
version = "1.3.0"
description = ""
authors = [
{ name = "camille-vanhoffelen", email = "camille-vanhoffelen@users.noreply.github.com" },
{ name = "raphael-vanhoffelen", email = "dskart11@gmail.com" },
]
dependencies = [
"structlog>=23.1.0",
"click>=8.1.3",
"pydantic>=1.10.8",
"pydub>=0.25.1",
"wave>=0.0.2",
"openai>=0.27.7",
"boto3>=1.26.146",
"python-shout>=0.2.8",
"torch>=2.0.1",
"torchaudio>=2.0.2",
"guidance>=0.0.64",
"TorToiSe @ git+https://github.com/camille-vanhoffelen/tortoise-tts.git",
"voicefixer @ git+https://github.com/camille-vanhoffelen/voicefixer.git",
"numpy==1.23",
"transformers>=4.32.1",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = ["wet_toast_talk_radio"]
[tool.pdm.dev-dependencies]
lint = ["black>=23.3.0", "ruff>=0.0.270"]
test = ["pytest>=7.3.1", "hypothesis>=6.76.0", "pytest-mock>=3.11.1"]
dev = []
ide = ["setuptools>=67.8.0"]
[tool.pdm.scripts]
disc-jockey = "python -m wet_toast_talk_radio.main disc-jockey"
audio-generator = "python -m wet_toast_talk_radio.main audio-generator"
scriptwriter = "python -m wet_toast_talk_radio.main scriptwriter"
local-setup = "python -m wet_toast_talk_radio.media_store.data.load_store"
[tool.pytest.ini_options]
markers = ["integration: mark test as an integration test"]