22 lines
421 B
TOML
22 lines
421 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",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = ["pytest>=8.0"]
|
|
|
|
[project.scripts]
|
|
h2g2 = "h2g2.main:main"
|