-
Notifications
You must be signed in to change notification settings - Fork 452
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 803 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (23 loc) · 803 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "amber-kb"
version = "0.1.0"
description = "Auditable, portable, self-verifying offline knowledge artifacts (banked embedding retrieval)"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "Pete Ferr", email = "" }]
keywords = ["rag", "embeddings", "merkle", "offline", "retrieval", "provenance"]
dependencies = ["numpy>=1.24"]
[project.optional-dependencies]
semantic = ["sentence-transformers>=2.2"]
dev = ["pytest>=7"]
[project.scripts]
amber = "amber.cli:main"
[project.urls]
Homepage = "https://github.com/offchainthoughts/amber"
Paper = "https://github.com/offchainthoughts/amber/blob/main/paper/amber.pdf"
[tool.setuptools]
packages = ["amber"]