Skip to content

Commit f09edab

Browse files
committed
Use uv to manage sub-projects
1 parent ad55564 commit f09edab

File tree

7 files changed

+48
-19
lines changed

7 files changed

+48
-19
lines changed

pyproject.toml

+9
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,16 @@ dependencies = [
1313
"more-itertools>=10.6.0",
1414
"sqlite-spellfix>=1.1",
1515
"wikdict-compound==0.2",
16+
"wikdict-query",
17+
"wikdict-reader",
1618
]
1719
authors = [
1820
{name = "Karl Bartel", email = "[email protected]"},
1921
]
22+
23+
[tool.uv.sources]
24+
wikdict-query = { workspace = true }
25+
wikdict-reader = { workspace = true }
26+
27+
[tool.uv.workspace]
28+
members = ["wikdict-query", "wikdict-reader"]

uv.lock

+21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wikdict-query/poetry.lock

-8
This file was deleted.

wikdict-query/pyproject.toml

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
[tool.poetry]
1+
[project]
22
name = "wikdict-query"
33
version = "0.1.0"
44
description = "Query WikDict SQLite databases"
5-
authors = ["Karl Bartel <[email protected]>"]
5+
authors = [
6+
{name = "Karl Bartel", email = "[email protected]"},
7+
]
68
license = "MIT"
79

8-
[tool.poetry.dependencies]
9-
python = ">=3.7"
10-
11-
[tool.poetry.dev-dependencies]
12-
1310
[build-system]
14-
requires = ["poetry-core>=1.0.0"]
15-
build-backend = "poetry.core.masonry.api"
11+
requires = ["hatchling"]
12+
build-backend = "hatchling.build"

wikdict-reader/pyproject.toml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[project]
2+
name = "wikdict-reader"
3+
version = "0.1.0"
4+
description = "Annotate texts with translations"
5+
authors = [
6+
{name = "Karl Bartel", email = "[email protected]"},
7+
]
8+
license = "MIT"
9+
10+
[build-system]
11+
requires = ["hatchling"]
12+
build-backend = "hatchling.build"

wikdict_query

-1
This file was deleted.

wikdict_reader

-1
This file was deleted.

0 commit comments

Comments
 (0)