-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
127 lines (115 loc) · 2.86 KB
/
Copy pathpyproject.toml
File metadata and controls
127 lines (115 loc) · 2.86 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
[project]
name = "mnemostroma"
version = "2.5.2"
description = "Autonomous memory layer for AI agents — offline, RAM-first, no cloud"
readme = "README.md"
requires-python = ">=3.12"
license = { text = "FSL-1.1-MIT" }
authors = [
{ name = "GG-QandV" }
]
keywords = [
"ai", "agent", "memory", "mcp", "llm", "onnx",
"context", "rag", "semantic-search", "offline"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Environment :: Console",
"Typing :: Typed",
]
dependencies = [
"onnxruntime>=1.17",
"tokenizers>=0.15",
"numpy>=1.24",
"lz4>=4.0",
"aiosqlite>=0.19",
"huggingface-hub>=0.20",
"psutil>=5.9",
"mcp>=1.0",
]
[project.urls]
Homepage = "https://github.com/GG-QandV/mnemostroma"
Repository = "https://github.com/GG-QandV/mnemostroma"
Issues = "https://github.com/GG-QandV/mnemostroma/issues"
Changelog = "https://github.com/GG-QandV/mnemostroma/blob/main/CHANGELOG.md"
[project.scripts]
mnemostroma = "mnemostroma.__main__:cli"
[project.optional-dependencies]
sse = [
"starlette>=0.36",
"uvicorn>=0.27",
"httpx>=0.27",
"cryptography>=42.0",
]
tunnel = [
"mnemostroma[sse]",
]
tray = [
"PyQt6>=6.0",
"pillow>=10.0",
]
watch = []
all = [
"starlette>=0.36",
"uvicorn>=0.27",
"httpx>=0.27",
"cryptography>=42.0",
"PyQt6>=6.0",
"pillow>=10.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pip-audit>=2.7",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
mnemostroma = [
"config_default.json",
"models_manifest.json",
"py.typed",
"service_templates/linux/*.service",
"extension/**/*",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
pythonpath = ["src"]
[tool.ruff]
line-length = 88
target-version = "py312"
select = ["E", "F", "I", "UP", "B", "SIM"]
[tool.mypy]
strict = false
files = ["src/mnemostroma"]
ignore_missing_imports = true
[tool.importlinter]
root_package = "mnemostroma"
[[tool.importlinter.contracts]]
name = "Domain isolation"
type = "forbidden"
source_modules = ["mnemostroma.domain"]
forbidden_modules = [
"mnemostroma.adapters",
"mnemostroma.ports",
"aiosqlite",
"onnxruntime",
"numpy",
"asyncio"
]
[tool.mnemostroma]
previous_version = "2.5.2"