-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (47 loc) 路 1.39 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (47 loc) 路 1.39 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
[project]
name = "claude-wt"
dynamic = ["version"]
description = "Utility for running Claude Code in parallel and managing dedicated git worktrees."
readme = "README.md"
requires-python = ">=3.12"
dependencies = ["cyclopts>=3.0.0", "rich>=13.0.0"]
keywords = ["claude", "git", "ai"]
authors = [{ name = "Jeremiah Lowin" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
[project.scripts]
claude-wt = "claude_wt.cli:app"
[project.urls]
Homepage = "https://github.com/jlowin/claude-wt"
[build-system]
requires = ["hatchling", "uv-dynamic-versioning>=0.7.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
vcs = "git"
style = "pep440"
bump = true
fallback-version = "0.0.0"
[dependency-groups]
dev = ["pre-commit>=4.2.0", "pyright>=1.1.402"]
[tool.pyright]
include = ["claude_wt"]
exclude = ["**/node_modules", "**/__pycache__", ".venv", ".git", "dist"]
pythonVersion = "3.10"
pythonPlatform = "Darwin"
typeCheckingMode = "basic"
reportMissingImports = true
reportMissingTypeStubs = false
useLibraryCodeForTypes = true
venvPath = "."
venv = ".venv"
[tool.ruff.lint]
extend-select = ["I", "UP"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "I001", "RUF013"]
# allow imports not at the top of the file
"src/fastmcp/__init__.py" = ["E402"]