-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.27 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
53
54
55
56
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "trinity-assistant"
version = "0.17.10"
description = "Local-first academic personal concierge for macOS, Windows 11, and Linux servers"
readme = "README.md"
requires-python = ">=3.10,<3.15"
license = {text = "Apache-2.0"}
dependencies = [
"beautifulsoup4>=4.12",
"markdown>=3.6",
"numpy>=1.26",
"Pillow>=10.3",
"PyMuPDF>=1.24",
"requests>=2.31",
"sentence-transformers>=3.0",
]
[project.optional-dependencies]
macos = [
"faster-whisper>=1.1",
"PySide6>=6.8",
"sounddevice>=0.5",
"pyobjc-framework-AVFoundation>=10.3; platform_system == 'Darwin'",
"pyobjc-framework-Cocoa>=10.3; platform_system == 'Darwin'",
"pyobjc-framework-Speech>=10.3; platform_system == 'Darwin'",
]
windows = [
"faster-whisper>=1.1",
"PySide6>=6.8",
"sounddevice>=0.5",
"pywin32>=306; platform_system == 'Windows'",
]
voice = [
"speech-to-speech==0.2.11",
"websockets>=14,<18",
]
linux = []
test = [
"pytest>=8.0",
]
[project.scripts]
trinity = "trinity_cli:main"
agentctl = "agentctl:main"
[tool.setuptools]
packages = []
py-modules = ["trinity_cli", "trinity_tui", "agentctl"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"