-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
45 lines (39 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
[project]
name = "zer0dex"
version = "0.0.9"
description = "Local dual-layer memory for AI agents using a compressed index plus vector retrieval."
readme = "README.md"
license = {text = "Apache-2.0"}
requires-python = ">=3.11"
authors = [
{name = "Rolando Bosch"},
]
keywords = ["agent-memory", "persistent-memory", "local-first", "rag", "memory", "vector-store"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"mem0ai>=0.1.0",
"chromadb>=1.0.0",
]
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/hermes-labs-ai/zer0dex"
Documentation = "https://github.com/hermes-labs-ai/zer0dex#readme"
Repository = "https://github.com/hermes-labs-ai/zer0dex"
Issues = "https://github.com/hermes-labs-ai/zer0dex/issues"
Changelog = "https://github.com/hermes-labs-ai/zer0dex/blob/main/CHANGELOG.md"
[project.scripts]
zer0dex = "zer0dex.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"