-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (90 loc) · 2.41 KB
/
pyproject.toml
File metadata and controls
98 lines (90 loc) · 2.41 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "claude-code-tools"
version = "1.11.1"
description = "Collection of tools for working with Claude Code"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"claude-agent-sdk>=0.1.6",
"click>=8.0.0",
"commitizen>=4.8.3",
"fire>=0.5.0",
"mcp>=1.13.0",
"pytest>=9.0.1",
"pyyaml>=6.0",
"rich>=13.0.0",
"tantivy>=0.22.0",
"tqdm>=4.67.1",
]
[project.optional-dependencies]
dev = ["commitizen>=3.0.0"]
gdocs = [
"google-api-python-client>=2.0.0",
"google-auth-oauthlib>=1.0.0",
"Pillow>=10.0.0",
]
[project.scripts]
# Unified session management interface
# All session commands accessible via: aichat <subcommand>
aichat = "claude_code_tools.aichat:main"
# Non-session utilities
vault = "claude_code_tools.dotenv_vault:main"
tmux-cli = "claude_code_tools.tmux_cli_controller:main"
env-safe = "claude_code_tools.env_safe:main"
md2gdoc = "claude_code_tools.md2gdoc:main"
gdoc2md = "claude_code_tools.gdoc2md:main"
gdoc2docx = "claude_code_tools.gdoc2docx:main"
csv2gsheet = "claude_code_tools.csv2gsheet:main"
gsheet2csv = "claude_code_tools.gsheet2csv:main"
fix-session = "claude_code_tools.fix_session:main"
msg = "claude_code_tools.msg.cli:main"
msg-hook = "claude_code_tools.msg.hooks:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.custom]
# Runs hatch_build.py to ensure node_ui/node_modules is installed before packaging
[tool.hatch.build]
# Don't respect .gitignore - we want to include node_modules
ignore-vcs = true
include = [
"claude_code_tools/**/*.py",
"docs/*.md",
"node_ui/menu.js",
"node_ui/action_config.js",
"node_ui/package.json",
"node_ui/node_modules/**/*",
"claude_code_tools/action_rpc.py",
]
exclude = [
"demos/",
"*.mp4",
"*.gif",
"*.screenstudio/",
".claude/",
"claude-code-router/",
"reference/",
"ghostty",
# Exclude git/venv/cache dirs that would otherwise be included
".git/",
".venv/",
"__pycache__/",
"*.pyc",
".pytest_cache/",
"*.egg-info/",
"/dist/",
"/build/",
]
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (require API calls)",
]
[tool.commitizen]
name = "cz_conventional_commits"
version = "1.11.1"
tag_format = "v$version"
version_files = [
"pyproject.toml:version",
"claude_code_tools/__init__.py:__version__"
]
update_changelog_on_bump = false