-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 942 Bytes
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 942 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vibemouse"
version = "0.2.2"
description = "Mouse side-button voice dictation with SenseVoice"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
]
authors = [{ name = "VibeMouse" }]
dependencies = [
"numpy>=1.24,<2",
"sounddevice>=0.4.6",
"soundfile>=0.12.1",
"pynput>=1.7.7",
"evdev>=1.7.1",
"PyGObject>=3.46.0",
"pyperclip>=1.9.0",
"funasr-onnx>=0.4.1",
"onnxruntime>=1.24.0",
"modelscope>=1.18.0",
]
[project.optional-dependencies]
pt = [
"funasr>=1.2.6",
]
npu = [
"openvino>=2026.0.0",
]
[project.scripts]
vibemouse = "vibemouse.main:main"
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["vibemouse*"]