-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 775 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 775 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "wtcode"
version = "0.5.0"
description = "Launch your favorite code tool in a git worktree"
license = "MIT"
readme = "README.md"
requires-python = ">=3.9"
authors = [{name = "Jaeho Shin", email = "netj@sparcs.org"}]
keywords = ["git", "worktree", "cli", "claude", "developer-tools"]
classifiers = [
"Environment :: Console",
"Topic :: Software Development",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/netj/wtcode"
Repository = "https://github.com/netj/wtcode"
Issues = "https://github.com/netj/wtcode/issues"
[project.scripts]
wtcode = "wtcode.__main__:main"
[tool.setuptools.package-data]
wtcode = ["wtcode.sh"]