forked from nibzard/sapat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.08 KB
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
[build-system]
requires = ["setuptools>=67", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sapat"
dynamic = ["version"]
description = "Multi-provider speech-to-text transcription CLI tool"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Your Name", email = "your.email@example.com"}
]
dependencies = [
"click",
"requests",
"python-dotenv",
"openai",
"halo"
]
[project.scripts]
sapat = "sapat.cli:main"
[project.optional-dependencies]
oracle = ["oci>=2.126.0"]
vosk = ["vosk"]
moonshine = ["moonshine-voice"]
whisperx = ["whisperx"]
picovoice = ["pvleopard"]
replicate = ["replicate"]
falai = ["fal-client"]
all = [
"sapat[oracle]",
"sapat[vosk]",
"sapat[moonshine]",
"sapat[whisperx]",
"sapat[picovoice]",
"sapat[replicate]",
"sapat[falai]",
]
dev = ["pytest", "pytest-mock", "black", "isort"]
[tool.setuptools.packages.find]
include = ["sapat"]
[tool.setuptools.dynamic]
version = {attr = "sapat.__version__.__version__"}
[project.urls]
Homepage = "https://github.com/nibzard/sapat"