- Reorganize source code into src/ directory with logical subdirectories: - src/servers/: MCP and REST API server implementations - src/core/: Core business logic (transcriber, model_manager) - src/utils/: Utility modules (audio_processor, formatters) - Update all import statements to use proper module paths - Configure PYTHONPATH in startup scripts and Dockerfile - Update documentation with new structure and paths - Update pyproject.toml with package configuration - Keep DevOps files (scripts, Dockerfile, configs) at root level All functionality validated and working correctly.
13 lines
285 B
TOML
13 lines
285 B
TOML
[project]
|
|
name = "fast-whisper-mcp-server"
|
|
version = "0.1.1"
|
|
description = "High-performance speech recognition service with MCP and REST API servers"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"faster-whisper>=1.1.1",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
packages = ["src"]
|