-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 671 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 671 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
[project]
name = "voicepad-workspace"
version = "0.1.0"
description = "Voice recording and GPU-accelerated transcription tool"
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["voicepad", "voicepad-core"]
[project.optional-dependencies]
gpu = [
# For local development with GPU support
# Chains to voicepad[gpu] -> voicepad-core[gpu]
"voicepad[gpu]",
]
[tool.uv.workspace]
members = ["packages/voicepad-core", "packages/voicepad"]
[tool.uv.sources]
voicepad = { workspace = true }
voicepad-core = { workspace = true }
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.1",
"ty>=0.0.17",
"zensical>=0.0.23",
]