-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 903 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (43 loc) · 903 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
[project]
name = "guaxa"
version = "0.1.0"
description = "Transcription pipeline for the RPGuaxa podcast"
authors = [
{ name = "Caio Mizerkowski", email = "caiomizerkowski@gmail.com" },
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"beautifulsoup4>=4.12",
"lxml>=5.2",
"natsort>=8.4",
"python-dotenv>=1.0",
"requests",
"tqdm>=4.66",
"Unidecode>=1.3",
"urllib3>=2.2",
]
[project.optional-dependencies]
gpu = [
"openai-whisper>=20231117",
"onnxruntime-gpu>=1.17",
"pyannote.audio>=3.1",
"torch>=2.2",
"torchaudio>=2.2",
]
app = [
"gradio>=4.27",
]
db = [
"pymongo>=4.7",
]
dev = [
"black>=24.4",
"isort>=5.13",
"prospector>=1.10",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.envs.default.env-vars]
PIP_EXTRA_INDEX_URL = "https://download.pytorch.org/whl/cu121"