vocal-cli 0.3.4__tar.gz → 0.3.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32,6 +32,7 @@ uv.lock
32
32
 
33
33
  # IDE
34
34
  .vscode/
35
+ .cursor
35
36
  .idea/
36
37
  *.swp
37
38
  *.swo
@@ -79,3 +80,4 @@ Thumbs.db
79
80
  # SDK generator scratch dirs
80
81
  packages/sdk/gen-test*/
81
82
  packages/sdk/.gen-test*/
83
+ .claude/settings.local.json
@@ -1,15 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vocal-cli
3
- Version: 0.3.4
3
+ Version: 0.3.6
4
4
  Summary: CLI tool for Vocal - Ollama-style Voice Model Management
5
5
  Project-URL: Homepage, https://github.com/niradler/vocal
6
- Project-URL: Documentation, https://github.com/niradler/vocal#readme
6
+ Project-URL: Documentation, https://github.com/niradler/vocal/tree/master/docs
7
7
  Project-URL: Repository, https://github.com/niradler/vocal
8
8
  Project-URL: Issues, https://github.com/niradler/vocal/issues
9
9
  Author: Vocal Contributors
10
10
  License: SSPL-1.0
11
11
  Keywords: cli,command-line,ollama,speech-to-text,tts,voice
12
- Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Development Status :: 4 - Beta
13
13
  Classifier: Environment :: Console
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: License :: Other/Proprietary License
@@ -18,7 +18,11 @@ Classifier: Programming Language :: Python :: 3.12
18
18
  Classifier: Programming Language :: Python :: 3.13
19
19
  Classifier: Topic :: Utilities
20
20
  Requires-Python: >=3.11
21
- Requires-Dist: rich>=13.0.0
22
- Requires-Dist: typer>=0.12.0
23
- Requires-Dist: uvicorn>=0.31.0
24
- Requires-Dist: vocal-sdk>=0.3.4
21
+ Requires-Dist: numpy>=2.4.3
22
+ Requires-Dist: rich>=14.3.3
23
+ Requires-Dist: sounddevice>=0.5.5
24
+ Requires-Dist: typer>=0.24.1
25
+ Requires-Dist: uvicorn>=0.41.0
26
+ Requires-Dist: vocal-core>=0.3.6
27
+ Requires-Dist: vocal-sdk>=0.3.6
28
+ Requires-Dist: websockets>=16.0
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vocal-cli"
3
- version = "0.3.4"
3
+ version = "0.3.6"
4
4
  description = "CLI tool for Vocal - Ollama-style Voice Model Management"
5
5
  requires-python = ">=3.11"
6
6
  license = { text = "SSPL-1.0" }
@@ -9,7 +9,7 @@ authors = [
9
9
  ]
10
10
  keywords = ["cli", "command-line", "speech-to-text", "tts", "ollama", "voice"]
11
11
  classifiers = [
12
- "Development Status :: 3 - Alpha",
12
+ "Development Status :: 4 - Beta",
13
13
  "Intended Audience :: Developers",
14
14
  "License :: Other/Proprietary License",
15
15
  "Programming Language :: Python :: 3.11",
@@ -19,15 +19,19 @@ classifiers = [
19
19
  "Topic :: Utilities",
20
20
  ]
21
21
  dependencies = [
22
- "vocal-sdk>=0.3.4",
23
- "typer>=0.12.0",
24
- "rich>=13.0.0",
25
- "uvicorn>=0.31.0",
22
+ "vocal-core>=0.3.6",
23
+ "vocal-sdk>=0.3.6",
24
+ "typer>=0.24.1",
25
+ "rich>=14.3.3",
26
+ "uvicorn>=0.41.0",
27
+ "sounddevice>=0.5.5",
28
+ "numpy>=2.4.3",
29
+ "websockets>=16.0",
26
30
  ]
27
31
 
28
32
  [project.urls]
29
33
  Homepage = "https://github.com/niradler/vocal"
30
- Documentation = "https://github.com/niradler/vocal#readme"
34
+ Documentation = "https://github.com/niradler/vocal/tree/master/docs"
31
35
  Repository = "https://github.com/niradler/vocal"
32
36
  Issues = "https://github.com/niradler/vocal/issues"
33
37
 
@@ -4,4 +4,4 @@ Vocal CLI - Command-line interface for Vocal Speech AI Platform
4
4
  This CLI provides Ollama-style commands for model management and audio transcription.
5
5
  """
6
6
 
7
- __version__ = "0.3.4"
7
+ __version__ = "0.3.6"