-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (38 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
45 lines (38 loc) · 1.01 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
[project]
name = "planectra"
version = "0.1.0"
description = "Planning conversation tracker with RAG for Claude Code"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
dependencies = [
"chromadb>=0.5.0",
"pydantic>=2.0",
"click>=8.0",
"mcp>=1.0",
]
[dependency-groups]
dev = [
"ruff>=0.9.0",
"pytest>=8.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "A", "SIM"]
[project.scripts]
planectra = "planectra.cli:main"
pln = "planectra.cli:main"
planectra-hook-prompt = "planectra.hooks.prompt:main"
planectra-hook-plan-enter = "planectra.hooks.plan_enter:main"
planectra-hook-plan-exit = "planectra.hooks.plan_exit:main"
planectra-hook-session = "planectra.hooks.session:main"
planectra-mcp-server = "planectra.server.mcp_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/planectra"]