-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (42 loc) · 1.28 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (42 loc) · 1.28 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "myai"
version = "0.1.0"
description = "Local-first multimodal cognitive AI companion with persistent memory, personality, skills, voice, vision and local model adapters."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "Yasser Ameur" }]
keywords = ["ai", "local-ai", "companion", "memory", "personality", "cognitive", "multimodal", "llm", "knowledge-graph"]
dependencies = [
"numpy>=1.26",
"PyYAML>=6.0",
]
[project.optional-dependencies]
llm = ["llama-cpp-python>=0.2.90"]
stt = ["faster-whisper>=1.0"]
tts = ["kokoro-onnx>=0.3.0", "soundfile>=0.12", "piper-tts>=1.2"]
vision = ["mediapipe>=0.10.14"]
vad = ["onnxruntime>=1.17", "torch>=2.1"]
embeddings = ["onnxruntime>=1.17"]
obs = ["psutil>=5.9"]
api = []
dev = ["pytest>=8", "pytest-asyncio>=0.23", "ruff>=0.4"]
[project.scripts]
companion = "companion.interfaces.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
companion = ["py.typed"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
asyncio_mode = "auto"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
ignore = ["E501"]