Skip to content

Commit b4756ba

Browse files
committed
Make project compatible with uv and poetry
1 parent 1212571 commit b4756ba

2 files changed

Lines changed: 22 additions & 10 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 & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,6 @@ dev = [
1616
"ty>=0.0.14",
1717
]
1818

19-
[tool.uv]
20-
21-
[tool.uv.build-backend]
22-
module-root = ""
23-
24-
[build-system]
25-
requires = ["uv_build>=0.9.0,<0.10.0"]
26-
build-backend = "uv_build"
27-
28-
2919
[tool.ruff]
3020
line-length = 88
3121

@@ -40,3 +30,18 @@ source = ["plur"]
4030
fail_under = "93"
4131
skip_covered = true
4232
exclude_lines = ["pragma: no cover", "if False:", "if __name__ == .__main__.:", "raise NotImplementedError"]
33+
34+
[tool.poetry]
35+
name = "plur"
36+
version = "0.1.0"
37+
description = "🔢 Simple universal word pluralizer 🔢"
38+
authors = ["Tom Ritchford <tom@swirly.com>"]
39+
readme = "README.md"
40+
41+
[tool.poetry.dependencies]
42+
python = ">=3.10"
43+
44+
45+
[build-system]
46+
requires = ["hatchling"]
47+
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)