File size: 832 Bytes
1719c2a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
[project]
name = "echocoach"
version = "0.1.0"
description = "Local voice practice coach — ASR, pace/filler analysis, LLM coaching, TTS VoiceOut"
readme = "README.md"
authors = [
    { name = "MSGhais", email = "msghais135@gmail.com" }
]
requires-python = ">=3.12"
dependencies = [
    "inference",
    "agent",
    "matplotlib>=3.9.0",
    "numpy>=2.0.0",
    "pyyaml>=6.0.2",
    "soundfile>=0.12.0",
    "sounddevice>=0.5.0",
    "librosa>=0.10.0",
    "transformers>=5.4.0",
    "torch>=2.5.0",
    "accelerate>=1.2.0",
    "huggingface-hub>=0.27.0",
]

[project.optional-dependencies]
whisper = [
    "pywhispercpp>=1.3.0",
]
piper = [
    "piper-tts>=1.3.0",
]

[tool.uv.sources]
inference = { workspace = true }
agent = { workspace = true }

[build-system]
requires = ["uv_build>=0.8.13,<0.9.0"]
build-backend = "uv_build"