-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (50 loc) · 1.6 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
53
54
55
[project]
name = "VoiceFlow"
version = "1.6.2"
readme = "README.md"
description = "Offline voice-to-text dictation for Windows and Linux, using Whisper."
keywords = ["voice-to-text", "dictation", "whisper", "speech-to-text", "offline", "linux", "wayland", "transcription", "stt", "faster-whisper", "privacy"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Office/Business",
]
requires-python = ">=3.10"
dependencies = [
"pyloid",
"faster-whisper",
"pynput",
"sounddevice",
"numpy",
"pyperclip",
"pyautogui",
"keyring>=24",
"soundfile>=0.12",
"httpx>=0.27",
"keyboard>=0.13.5; sys_platform == 'win32'",
"evdev>=1.7.0; sys_platform == 'linux'",
"nvidia-cublas-cu12; sys_platform == 'linux'",
]
[project.urls]
Homepage = "https://get-voice-flow.vercel.app/"
Repository = "https://github.com/infiniV/VoiceFlow"
Issues = "https://github.com/infiniV/VoiceFlow/issues"
Releases = "https://github.com/infiniV/VoiceFlow/releases"
[dependency-groups]
dev = [
"pyloid-builder",
"pyloid-watcher",
"ruff",
"pytest",
]
[tool.pytest.ini_options]
testpaths = ["src-pyloid/tests"]
markers = [
"network: tests that hit huggingface.co (slow, opt-in via VOICEFLOW_NETWORK_TESTS=1)",
"big_model: tests that download multi-GB models (opt-in via VOICEFLOW_BIG_MODEL_TESTS=1)",
]