-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 2.13 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.backends._legacy:_Backend"
[project]
name = "memorystress"
version = "0.1.0"
description = "Longitudinal benchmark for AI memory systems — test LLM agents, RAG pipelines, MCP servers, and memory backends across 1,000 sessions"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.11"
authors = [
{name = "OMEGA Memory", email = "hello@omegamax.co"},
]
keywords = [
"benchmark", "memory", "llm", "ai-agents", "evaluation", "rag",
"openai", "claude", "anthropic", "gpt-4", "langchain", "mem0", "zep",
"mcp", "vector-database", "long-term-memory", "ai-memory",
"retrieval-augmented-generation", "knowledge-retention",
"conversational-ai", "chatbot-memory", "agent-evaluation",
"memory-degradation", "semantic-memory", "multi-session",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Typing :: Typed",
]
dependencies = [
"openai>=1.0",
]
[project.optional-dependencies]
omega = ["omega-memory>=0.6.0"]
mem0 = ["mem0ai>=0.1.0"]
anthropic = ["anthropic>=0.20.0"]
all = ["omega-memory>=0.6.0", "mem0ai>=0.1.0", "anthropic>=0.20.0"]
[project.urls]
Homepage = "https://github.com/omega-memory/memorystress"
Repository = "https://github.com/omega-memory/memorystress"
Issues = "https://github.com/omega-memory/memorystress/issues"
Documentation = "https://github.com/omega-memory/memorystress#readme"
Dataset = "https://huggingface.co/datasets/singularityjason/memorystress"
[project.scripts]
memorystress = "memorystress.cli:main"
[tool.setuptools.packages.find]
include = ["memorystress*"]