2026-04-04 18:16:04 -07:00
|
|
|
[project]
|
|
|
|
|
name = "mempalace"
|
2026-04-08 17:46:56 +00:00
|
|
|
version = "3.0.11"
|
2026-04-04 18:16:04 -07:00
|
|
|
description = "Give your AI a memory — mine projects and conversations into a searchable palace. No API key required."
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
license = "MIT"
|
|
|
|
|
authors = [
|
|
|
|
|
{name = "milla-jovovich"},
|
|
|
|
|
]
|
|
|
|
|
keywords = [
|
|
|
|
|
"ai", "memory", "llm", "rag", "chromadb", "mcp",
|
|
|
|
|
"vector-database", "claude", "chatgpt", "embeddings",
|
|
|
|
|
]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
|
"Environment :: Console",
|
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
|
|
|
"Topic :: Utilities",
|
|
|
|
|
]
|
|
|
|
|
dependencies = [
|
2026-04-07 17:31:06 -03:00
|
|
|
"chromadb>=0.5.0,<0.7",
|
2026-04-04 18:16:04 -07:00
|
|
|
"pyyaml>=6.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://github.com/milla-jovovich/mempalace"
|
|
|
|
|
Repository = "https://github.com/milla-jovovich/mempalace"
|
|
|
|
|
"Bug Tracker" = "https://github.com/milla-jovovich/mempalace/issues"
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
mempalace = "mempalace:main"
|
|
|
|
|
|
2026-04-07 17:17:57 -03:00
|
|
|
[project.optional-dependencies]
|
2026-04-08 20:40:03 +03:00
|
|
|
dev = ["pytest>=7.0", "pytest-cov>=4.0", "ruff>=0.4.0"]
|
2026-04-07 17:31:06 -03:00
|
|
|
spellcheck = ["autocorrect>=2.0"]
|
2026-04-07 17:17:57 -03:00
|
|
|
|
2026-04-07 17:07:02 -03:00
|
|
|
[dependency-groups]
|
2026-04-08 20:40:03 +03:00
|
|
|
dev = ["pytest>=7.0", "pytest-cov>=4.0", "ruff>=0.4.0"]
|
2026-04-07 17:07:02 -03:00
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
|
|
|
packages = ["mempalace"]
|
2026-04-04 18:16:04 -07:00
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
|
|
|
|
target-version = "py39"
|
|
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "W"]
|
|
|
|
|
ignore = ["E501"]
|
|
|
|
|
|
|
|
|
|
[tool.ruff.format]
|
|
|
|
|
quote-style = "double"
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
2026-04-08 20:40:03 +03:00
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
|
source = ["mempalace"]
|
|
|
|
|
|
|
|
|
|
[tool.coverage.report]
|
|
|
|
|
fail_under = 30
|
|
|
|
|
show_missing = true
|
|
|
|
|
exclude_lines = [
|
|
|
|
|
"if __name__",
|
|
|
|
|
"pragma: no cover",
|
|
|
|
|
]
|