-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.19 KB
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
43
44
45
46
47
48
49
50
51
52
[project]
name = "sidequest"
version = "0.1.0"
description = "An AI Dungeon Master powered by coordinated Claude agents, so everyone gets to play."
requires-python = ">=3.11"
dependencies = [
"pyyaml>=6.0",
"rich>=13.0",
"pydantic>=2.0",
"aiohttp>=3.9",
"python-dotenv>=1.0",
"torch>=2.0",
"diffusers>=0.30",
"accelerate>=0.30",
"transformers>=4.40",
"safetensors>=0.4",
"pygame-ce>=2.5",
"numpy>=1.24",
"piper-tts>=1.2",
"pedalboard>=0.9",
"mlx-whisper>=0.4.3",
"scipy>=1.11",
"sounddevice>=0.4",
"sqlite-vec>=0.1.7",
]
[project.scripts]
sidequest = "sidequest.main:main"
sidequest-renderer = "sidequest.media.daemon:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-xdist>=3.5",
"pytest-asyncio>=0.23",
]
[tool.pytest.ini_options]
cache_dir = ".pytest_cache"
testpaths = ["tests"]
addopts = "--strict-markers -n auto --ignore=tests/integration"
asyncio_mode = "auto"
markers = [
"integration: tests that bind ports, spawn processes, or require Qt (run via: pytest tests/integration/)",
]
[tool.ruff]
exclude = [".pennyfarthing"]