Files
h2g2/pyproject.toml
seppedl 19d2721ff2 [add] Load voice parameters from .env file
Configure Piper TTS synthesis via environment variables (speaker_id,
length_scale, noise_scale, noise_w_scale, volume) loaded from .env
with python-dotenv. Includes .env.example as reference template.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-06 07:36:22 +02:00

23 lines
449 B
TOML

[project]
name = "h2g2"
version = "0.1.0"
description = "The Hitchhiker's Guide to the Galaxy - Python text adventure engine"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"piper-tts>=1.2.0",
"vosk>=0.3.45",
"pyaudio>=0.2.14",
"python-dotenv>=1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = ["pytest>=8.0"]
[project.scripts]
h2g2 = "h2g2.main:main"