You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deployment.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ Packaging and deploying Polylith projects is done by using the Poetry Multiproje
6
6
The `poetry build-project` command will make it possible to use relative package includes as how components and bases are added to Python Polylith projects.
7
7
Relative includes are currently not possible by default in __Poetry__, that is where the __Multiproject__ plugin comes in.
8
8
9
-
## Hatch, PDM, Rye and uv
9
+
## Hatch, PDM, Rye, Pixi and uv
10
10
Hatch, PDM, Rye and uv support relative includes via the `[tool.poetry.bricks]` configuration.
11
11
Nothing extra needed other than the build hooks.
12
12
@@ -16,7 +16,7 @@ you will need to add the path in the project-specific `pyroject.toml`.
16
16
17
17
If you only provide `wheel` distributions, this is optional.
18
18
19
-
#### Hatch, Rye and uv
19
+
#### Hatch, Rye, Pixi and uv
20
20
```toml
21
21
[tool.hatch.build.targets.wheel]
22
22
packages = ["<your top namespace here>"]
@@ -77,6 +77,17 @@ _Are you using the `uv` build backend (and not the recommended `hatch` build bac
77
77
_If so, you need to run the `poly build setup` and `poly build teardown` commands before and after the `uv build` command._
78
78
_This is needed because of the missing build hook support of the uv build backend._
0 commit comments