-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 2.32 KB
/
pyproject.toml
File metadata and controls
81 lines (74 loc) · 2.32 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "widemem-ai"
version = "1.4.0"
description = "Next-gen AI memory layer with hierarchical memory, importance scoring, and temporal retrieval"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "Radu Cioplea", email = "radu@cioplea.com" }]
keywords = [
"ai", "memory", "llm", "embeddings", "vector-search",
"agent-memory", "conversational-memory", "rag", "semantic-search",
"openai", "anthropic", "ollama", "faiss", "qdrant",
"long-term-memory", "mem0", "ai-agents", "chatbot-memory",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
"Typing :: Typed",
]
dependencies = [
"pydantic>=2.0",
"openai>=1.0",
"faiss-cpu>=1.7",
"numpy>=1.24",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"ruff>=0.4",
]
anthropic = ["anthropic>=0.30"]
ollama = ["ollama>=0.2"]
qdrant = ["qdrant-client>=1.9"]
sentence-transformers = ["sentence-transformers>=2.0"]
server = ["fastapi>=0.110", "uvicorn>=0.29"]
mcp = ["mcp>=1.0"]
all = [
"anthropic>=0.30",
"mcp>=1.0",
"ollama>=0.2",
"qdrant-client>=1.9",
"sentence-transformers>=2.0",
]
[tool.hatch.build.targets.wheel]
packages = ["widemem"]
[project.urls]
Homepage = "https://widemem.ai"
Repository = "https://github.com/remete618/widemem-ai"
Documentation = "https://github.com/remete618/widemem-ai#readme"
Issues = "https://github.com/remete618/widemem-ai/issues"
Changelog = "https://github.com/remete618/widemem-ai/releases"
[tool.ruff]
target-version = "py310"
line-length = 140
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"