-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (49 loc) · 1.43 KB
/
setup.py
File metadata and controls
51 lines (49 loc) · 1.43 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
"""
VectorMemory - Python Implementation
A two-tier memory system for AI agents
"""
from setuptools import setup, find_packages
setup(
name="vecmem",
version="1.0.0",
description="Two-tier memory system for AI agents with zero‑dependency core",
author="Erik Ashcraft",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.9",
install_requires=[
"numpy>=1.24.0", # only mandatory dependency
],
extras_require={
# Optional backends
"stm": ["hnswlib>=0.7.0"],
"ltm": ["sqlite-vec>=0.1.0"],
"monitoring": ["psutil>=5.9.0"],
"embeddings": [
"openai>=1.0.0",
"sentence-transformers>=2.2.0",
],
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.0.0",
"mypy>=1.5.0",
"ruff>=0.0.290",
],
"all": [
"hnswlib>=0.7.0",
"sqlite-vec>=0.1.0",
"psutil>=5.9.0",
"openai>=1.0.0",
"sentence-transformers>=2.2.0",
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)