-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 841 Bytes
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
[project]
name = "claude-code-auto-memory"
version = "0.8.3"
description = "Automatically maintains CLAUDE.md files as codebases evolve"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [
{ name = "severity1" }
]
keywords = ["claude", "claude-code", "plugin", "memory"]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pyyaml>=6.0",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["scripts"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.mypy]
python_version = "3.9"
strict = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_functions = ["test_*"]