Skip to content

Commit 3a401c5

Browse files
committed
Make project compatible with uv and poetry
1 parent 4f85454 commit 3a401c5

2 files changed

Lines changed: 22 additions & 4 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: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,25 @@ exclude_lines = ["pragma: no cover", "if False:", "if __name__ == .__main__.:",
1919

2020
[tool.ruff.format]
2121
quote-style = "single"
22-
[build-system]
23-
requires = ["hatchling"]
24-
build-backend = "hatchling.build"
25-
2622
[dependency-groups]
2723
dev = [
2824
"coverage>=7.13.2",
2925
"pyupgrade>=3.21.2",
3026
"ruff>=0.14.14",
3127
"ty>=0.0.14",
3228
]
29+
30+
[tool.poetry]
31+
name = "blocks"
32+
version = "0.1.0"
33+
description = "⬜🟩🟦πŸŸ₯ Solve a block puzzle πŸŸ₯🟦🟩⬜"
34+
authors = ["Tom Ritchford <tom@swirly.com>"]
35+
readme = "README.md"
36+
37+
[tool.poetry.dependencies]
38+
python = ">=3.10"
39+
40+
41+
[build-system]
42+
requires = ["hatchling"]
43+
build-backend = "hatchling.build"

0 commit comments

Comments
Β (0)