Spaces:
Running on Zero
Running on Zero
File size: 1,034 Bytes
9fca766 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | [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"
|