-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 2.05 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 2.05 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
[build-system]
requires = ["hatchling>=1.18,<1.27"]
build-backend = "hatchling.build"
[project]
name = "projectmem"
version = "0.2.0"
description = "AI coding memory — a local-first memory and judgment layer for AI coding agents that warns before repeating failed fixes."
authors = [{ name = "Ripon Chandra Malo" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
keywords = [
# phrase-based: single generic words ("ai", "memory") cannot rank on PyPI
"ai-coding-memory", "agent-memory", "ai-agent-memory", "agentic-memory",
"memory-for-ai-coding-agents", "persistent-memory", "llm-memory",
"mcp", "mcp-server", "model-context-protocol",
"claude", "claude-code", "cursor", "codex", "coding-agent",
"local-first", "developer-tools", "pre-commit", "ai-memory",
]
dependencies = [
"typer>=0.12",
"mcp>=0.1.0",
"watchdog>=4.0",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Documentation",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.4",
]
[project.urls]
Homepage = "https://projectmem.dev"
Repository = "https://github.com/riponcm/projectmem"
Documentation = "https://projectmem.dev/guide"
Changelog = "https://projectmem.dev/changelog"
Issues = "https://github.com/riponcm/projectmem/issues"
Paper = "https://arxiv.org/abs/2606.12329"
[project.scripts]
projectmem = "projectmem.cli:main"
pjm = "projectmem.cli:main"
pjm-mcp = "projectmem.mcp_server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/projectmem"]
[tool.hatch.build.targets.sdist]
# marketing assets are linked from GitHub in the README; no need to ship them to pip users
exclude = ["brand/"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 88
target-version = "py310"