Add pyproject.toml with optional dependency extras #4

Open
opened 2026-04-06 22:25:19 -07:00 by pyr0ball · 0 comments
Owner

Summary

No Python dependency manifest exists. The server requires flask (→ FastAPI after migration), openai-whisper, piper-tts, requests, python-dotenv, mycroft-precise, pyaudio, pyannote.audio. None are declared.

Proposed structure

[project]
name = "minerva"
dependencies = [
    "fastapi",
    "uvicorn[standard]",
    "openai-whisper",
    "requests",
    "python-dotenv",
    "pyaudio",
]

[project.optional-dependencies]
wake-word = ["mycroft-precise"]
speaker-id = ["pyannote.audio"]

Matches cf-core optional extras pattern.

References

  • cf-dev review finding: Priority 4
## Summary No Python dependency manifest exists. The server requires flask (→ FastAPI after migration), openai-whisper, piper-tts, requests, python-dotenv, mycroft-precise, pyaudio, pyannote.audio. None are declared. ## Proposed structure ```toml [project] name = "minerva" dependencies = [ "fastapi", "uvicorn[standard]", "openai-whisper", "requests", "python-dotenv", "pyaudio", ] [project.optional-dependencies] wake-word = ["mycroft-precise"] speaker-id = ["pyannote.audio"] ``` Matches cf-core optional extras pattern. ## References - cf-dev review finding: Priority 4
pyr0ball added this to the Alpha — Server Pipeline milestone 2026-04-06 22:25:19 -07:00
pyr0ball added the
infra
label 2026-04-06 22:25:19 -07:00
Sign in to join this conversation.
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: Circuit-Forge/minerva#4
No description provided.