-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (68 loc) · 1.89 KB
/
pyproject.toml
File metadata and controls
80 lines (68 loc) · 1.89 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
[build-system]
requires = ["uv_build>=0.9.2,<0.11.0"]
build-backend = "uv_build"
[project]
name = "worktreeflow"
version = "0.3.3"
description = "Git workflow manager for feature branches using worktrees, shows you cli equivalent commands"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Steve Morin", email = "steve.morin@gmail.com" }
]
keywords = ["git", "worktree", "workflow", "cli", "github"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: Utilities",
]
dependencies = [
"gitpython>=3.1.40",
"click>=8.1.0",
"rich>=13.0",
"typing-extensions>=4.0",
]
[project.urls]
Homepage = "https://github.com/smorinlabs/worktreeflow"
Repository = "https://github.com/smorinlabs/worktreeflow"
Issues = "https://github.com/smorinlabs/worktreeflow/issues"
[project.scripts]
wtf = "worktreeflow.cli:cli"
worktreeflow = "worktreeflow.cli:cli"
[dependency-groups]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"ruff>=0.4.0",
"ty>=0.0.1a7",
"pip-audit>=2.7.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ty.environment]
python-version = "3.11"
[tool.ty.analysis]
allowed-unresolved-imports = ["git", "git.*"]
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B", "SIM"]
[tool.coverage.run]
source = ["src/worktreeflow"]
[tool.coverage.report]
fail_under = 35
exclude_lines = [
"pragma: no cover",
"if __name__ == .__main__.",
"if TYPE_CHECKING:",
]