Scrypt / pyproject.toml
IMJONEZZ's picture
SCRYPT: initial commit — game, sandbox, Warden, Space web layer
9fca766
Raw
History Blame Contribute Delete
1.03 kB
[project]
name = "scrypt"
version = "0.0.1"
description = "A terminal deck-builder escape room. The Warden is waiting."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Proprietary - All Rights Reserved" }
classifiers = ["License :: Other/Proprietary License", "Private :: Do Not Upload"]
authors = [{ name = "Chris Brousseau" }]
dependencies = [
"textual>=1.0",
"rich>=13.0",
"pyyaml>=6.0",
"httpx>=0.27",
]
[project.optional-dependencies]
# Bundled local inference: no llama.cpp install needed, wheels included.
local = ["llama-cpp-python>=0.3.0"]
# The HuggingFace Space web layer: a custom frontend over gradio.Server.
space = ["gradio>=6", "uvicorn[standard]>=0.30"]
[project.scripts]
scrypt = "scrypt.app:main"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["scrypt"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"