-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (76 loc) · 2.33 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (76 loc) · 2.33 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "trove-runtime"
version = "1.0.0"
description = "Local-first, privacy-preserving memory and cited evidence runtime for AI agents"
requires-python = ">=3.11"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "TROVE contributors" }]
keywords = ["agent-memory", "mcp", "local-first", "privacy", "evidence-retrieval", "wechat"]
classifiers = [
"Environment :: MacOS X",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Topic :: Database :: Database Engines/Servers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"cryptography>=42,<50",
"mcp>=1.0,<2",
"zstandard>=0.23,<1",
]
[project.urls]
Homepage = "https://github.com/JNHFlow21/trove"
Documentation = "https://github.com/JNHFlow21/trove#readme"
Issues = "https://github.com/JNHFlow21/trove/issues"
Repository = "https://github.com/JNHFlow21/trove"
[project.optional-dependencies]
local-asr = [
"faster-whisper>=1.1,<2",
"silk-python==0.2.6",
]
local-vision = [
"pyobjc-framework-Cocoa>=10,<12",
"pyobjc-framework-Quartz>=10,<12",
"pyobjc-framework-Vision>=10,<12",
]
local-vlm = [
"mlx-vlm>=0.1,<1",
"Pillow>=10,<12",
"huggingface-hub>=0.23",
]
key-capture = [
"frida-tools>=12",
]
local-embedding = [
"sentence-transformers>=5.0,<6",
"huggingface-hub>=0.23",
]
zvec = [
"zvec>=0.5,<0.6",
]
cloud-retrieval = [
"httpx>=0.27,<1",
]
[tool.trove]
privacy_scan = "scripts/privacy_scan.py"
[tool.trove.release]
protocol = "trove/1"
artifact_set = ["trove-runtime", "trove-provider-wechat"]
public_surface = ["mcp", "cli", "skills"]
official_skills = 6
promotion_policy = "automated-gates"
final_manifest = "dist/v1.0.0-release-manifest.json"
legacy_aliases = false
[project.scripts]
trove = "trove_cli.main:main"
trove-mcp = "trove_mcp.server:main"
troved = "trove_daemon.main:main"
[tool.setuptools.packages.find]
where = ["packages/trove_protocol", "packages/trove_core", "packages/trove_client", "packages/trove_daemon", "packages/trove_cli", "packages/trove_mcp"]
include = ["trove_protocol*", "trove_core*", "trove_client*", "trove_daemon*", "trove_cli*", "trove_mcp*"]
[tool.setuptools.package-data]
trove_protocol = ["schemas/*.json"]