-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.01 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
[project]
name = "brain"
version = "0.1.0"
description = "A persistent neuromorphic brain with LLM bridge"
requires-python = ">=3.11,<3.13"
dependencies = [
"snntorch>=0.9.1",
"torch>=2.2",
"numpy>=1.26",
"matplotlib>=3.8",
# Phase 3a — Mac sensor adapter + daemon
"fastapi>=0.115",
"uvicorn[standard]>=0.32",
"websockets>=13",
"pynput>=1.7",
"sounddevice>=0.5",
"pyobjc-framework-Cocoa>=10.0; sys_platform == 'darwin'",
"pyobjc-framework-Quartz>=10.0; sys_platform == 'darwin'",
# Phase 3b — LLM bridge
"anthropic>=0.40",
# Phase 3c — Voice
"piper-tts>=1.2",
"pywhispercpp>=1.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pytest-asyncio>=0.24",
"httpx>=0.27",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["brain"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v"
asyncio_mode = "auto"