Skip to content

Commit 07c0b8e

Browse files
committed
Make project compatible with uv and poetry
1 parent 841e195 commit 07c0b8e

2 files changed

Lines changed: 20 additions & 9 deletions

File tree

poetry.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,6 @@ dev = [
2626
"ty>=0.0.14",
2727
]
2828

29-
[tool.uv]
30-
31-
[tool.uv.build-backend]
32-
module-root = ""
33-
34-
3529
[tool.coverage]
3630
[tool.coverage.run]
3731
branch = true
@@ -42,8 +36,18 @@ exclude_lines = ["pragma: no cover", "if False:", "if __name__ == .__main__.:",
4236

4337
[tool.ruff.format]
4438
quote-style = "single"
45-
[build-system]
46-
requires = ["uv_build>=0.9.0,<0.10.0"]
47-
build-backend = "uv_build"
4839

40+
[tool.poetry]
41+
name = "gitz"
42+
version = "0.1.0"
43+
description = "🗜 Tiny useful git commands, some dangerous 🗜"
44+
authors = ["Tom Ritchford <tom@swirly.com>"]
45+
readme = "README.md"
46+
47+
[tool.poetry.dependencies]
48+
python = ">=3.10"
4949

50+
51+
[build-system]
52+
requires = ["hatchling"]
53+
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)