-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (45 loc) · 1.49 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
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "patchmem"
version = "0.1.0"
description = "Inspect coding-agent transcripts, author anchored memory patches, and structurally diff supplied tool-decision lists."
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "SuperMarioYL" }]
keywords = ["coding-agent", "agent", "claude-code", "working-memory", "decision-diff", "replay-ablation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
]
dependencies = [
"typer>=0.12",
"rich>=13.7",
"pydantic>=2.7",
]
[project.scripts]
patchmem = "patchmem.cli:app"
[project.urls]
Homepage = "https://github.com/SuperMarioYL/patchmem"
Repository = "https://github.com/SuperMarioYL/patchmem"
Issues = "https://github.com/SuperMarioYL/patchmem/issues"
[tool.hatch.build.targets.wheel]
packages = ["patchmem"]
[tool.hatch.build.targets.sdist]
include = ["patchmem", "tests", "assets", "docs", "examples", "README.md", "README.en.md", "LICENSE", "VERSION", "pyproject.toml"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-ra"
[tool.ruff]
line-length = 100
target-version = "py312"