-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 872 Bytes
/
pyproject.toml
File metadata and controls
33 lines (29 loc) · 872 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
30
31
32
33
[project]
name = "worktree-flash"
version = "0.2.1"
description = "Preview worktree branches from your main checkout while safely stashing your working state."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "Will Twait" }]
keywords = ["git", "worktree", "cli", "stash"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Version Control :: Git",
]
dependencies = [
"typer>=0.15.0",
]
[project.scripts]
flash = "flash.cli:app"
[project.urls]
Homepage = "https://github.com/WillTwait/flash"
Repository = "https://github.com/WillTwait/flash"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/flash"]