-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (65 loc) · 1.82 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (65 loc) · 1.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "voicerefine"
version = "3.0.0"
description = "Voice-to-clipboard with AI polish. MCP server for Claude Code, Gemini CLI, Codex CLI."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "CK42X / lordb" }]
keywords = ["voice", "whisper", "clipboard", "mcp", "dictation", "ck42x"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Sound/Audio :: Speech",
]
dependencies = [
"openai>=1.0.0",
"customtkinter>=5.2.2",
"sounddevice>=0.4.6",
"numpy>=1.24.0",
"pyperclip>=1.8.2",
"pynput>=1.7.6",
"pystray>=0.19.5",
"Pillow>=10.0.0",
"mcp>=1.0.0",
"websockets>=12.0",
]
[project.optional-dependencies]
local = ["faster-whisper>=1.0.0"]
secure = ["keyring>=24.0.0"]
dev = ["pytest>=8.0.0", "ruff>=0.4.0"]
all = ["voicerefine[local,secure,dev]"]
[project.scripts]
voicerefine = "voicerefine:main_entry"
voicerefine-mcp = "voicerefine_mcp:main_sync"
[project.urls]
Homepage = "https://github.com/lordbuffcloud/VoiceRefine"
Changelog = "https://github.com/lordbuffcloud/VoiceRefine/blob/master/CHANGELOG.md"
Issues = "https://github.com/lordbuffcloud/VoiceRefine/issues"
[tool.setuptools]
py-modules = [
"voicerefine",
"voicerefine_config",
"voicerefine_credentials",
"voicerefine_history",
"voicerefine_history_ui",
"voicerefine_local_whisper",
"voicerefine_mcp",
"voicerefine_pipeline",
"voicerefine_polish_local",
"voicerefine_settings",
"voicerefine_ui",
"voicerefine_update",
"voicerefine_vault",
"voicerefine_wizard",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.ruff]
line-length = 120
target-version = "py310"