-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (85 loc) · 2.49 KB
/
pyproject.toml
File metadata and controls
91 lines (85 loc) · 2.49 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
84
85
86
87
88
89
90
91
[build-system]
requires = ["setuptools>=45", "wheel", "pybind11>=2.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "feather-db"
version = "0.8.0"
description = "Embedded vector database + living context engine — multimodal pockets, context graph, adaptive decay, MCP server"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
]
keywords = [
"vector", "database", "similarity", "search", "embeddings",
"hnsw", "ann", "nearest-neighbor", "context-graph",
"knowledge-graph", "living-context", "multimodal", "ai"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: C++",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"numpy>=1.19.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black>=21.0",
"flake8>=3.9",
]
examples = [
"sentence-transformers>=2.0",
]
langchain = [
"langchain>=0.1.0",
"langchain-core>=0.1.0",
]
llamaindex = [
"llama-index>=0.10.0",
"llama-index-core>=0.10.0",
]
mcp = [
"mcp>=0.9.0",
]
all = [
"langchain>=0.1.0",
"langchain-core>=0.1.0",
"llama-index>=0.10.0",
"llama-index-core>=0.10.0",
"mcp>=0.9.0",
"google-genai>=1.0.0",
"anthropic>=0.20.0",
"openai>=1.0.0",
]
[project.scripts]
feather-serve = "feather_db.integrations.mcp_server:main"
[project.urls]
Homepage = "https://www.getfeather.store/"
Documentation = "https://github.com/feather-store/feather/blob/main/README.md"
Repository = "https://github.com/feather-store/feather"
Issues = "https://github.com/feather-store/feather/issues"
Changelog = "https://github.com/feather-store/feather/blob/main/CHANGELOG.md"
"Hawky.ai" = "https://hawky.ai"
[tool.setuptools]
packages = [
"feather_db",
"feather_db.integrations",
]
[tool.setuptools.package-data]
"feather_db" = ["*.so", "*.pyd", "*.dll", "d3.min.js"]