-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
73 lines (72 loc) · 1.9 KB
/
setup.py
File metadata and controls
73 lines (72 loc) · 1.9 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
from setuptools import setup, find_packages
setup(
name="openclaw-memory",
version="3.0.0",
description="OpenClaw memory systems: Memora (RAG) + Chronos (CL) + MSA (Sparse Attention) + Second Brain + Memory Server",
packages=find_packages(),
install_requires=[
"rich>=13.7.0",
"pydantic>=2.7.0",
"pydantic-settings>=2.0.0",
"pyyaml>=6.0.0",
"python-dateutil>=2.9.0",
"requests>=2.31.0",
"numpy>=1.26.0",
"networkx>=3.0",
],
extras_require={
"dev": [
"pytest>=7.0",
"pytest-cov>=4.0",
],
"chronos": [
"torch>=2.0.0",
],
"embeddings": [
"sentence-transformers>=3.0.0",
"einops>=0.8.0",
],
"vectordb": [
"lancedb>=0.10.0",
],
"web": [
"streamlit>=1.32.0",
"streamlit-agraph>=0.0.45",
"plotly>=5.18.0",
],
"full": [
"torch>=2.0.0",
"sentence-transformers>=3.0.0",
"einops>=0.8.0",
"lancedb>=0.10.0",
"streamlit>=1.32.0",
"streamlit-agraph>=0.0.45",
"plotly>=5.18.0",
],
},
py_modules=[
"memory_hub",
"memory_hub_cli",
"memory_cli",
"memory_server",
"shared_embedder",
"llm_client",
],
entry_points={
"console_scripts": [
"memora = memora.cli:main",
"chronos = chronos.cli:main",
"msa = msa.cli:main",
"memory-hub = memory_hub_cli:main",
"memory-cli = memory_cli:main",
"second-brain = second_brain.cli:main",
],
},
python_requires=">=3.9",
package_data={
"memora": ["config.yaml"],
"chronos": ["config.yaml"],
"msa": ["config.yaml"],
"second_brain": ["config.yaml"],
},
)