-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 1.17 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
[build-system]
requires = ["hatchling>=1.25.0", "uv-dynamic-versioning>=0.11.0"]
build-backend = "hatchling.build"
[project]
name = "git-worktree-cli"
dynamic = ["version"]
description = "A lightweight Python CLI tool to simplify Git worktree management"
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "cebidhem"}]
keywords = ["git", "cli", "developer-tools", "claude"]
requires-python = ">=3.12"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"typer>=0.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-mock>=3.0.0",
"black>=24.0.0",
"pylint>=3.0.0",
]
[project.scripts]
wt = "wt.cli:app"
[project.urls]
Homepage = "https://github.com/cebidhem/git-worktree-cli"
Repository = "https://github.com/cebidhem/git-worktree-cli"
Issues = "https://github.com/cebidhem/git-worktree-cli/issues"
[tool.hatch.build.targets.wheel]
packages = ["wt"]
[tool.hatch.version]
source = "uv-dynamic-versioning"
[tool.uv-dynamic-versioning]
enable = true
vcs = "git"
style = "pep440"