File tree 1 file changed +6
-12
lines changed
1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -38,42 +38,36 @@ This is the preferred way for Polylith projects.
38
38
39
39
#### Poetry
40
40
``` shell
41
- poetry build-project --directory path/to/project
41
+ poetry build-project --directory projects/the_project
42
42
```
43
43
44
44
#### Hatch
45
45
``` shell
46
- cd path/to_project
46
+ cd projects/the_project
47
47
48
48
hatch build
49
49
```
50
50
51
51
#### PDM
52
52
``` shell
53
- cd path/to_project
53
+ cd projects/the_project
54
54
55
55
pdm build
56
56
```
57
57
58
58
#### Rye
59
59
``` shell
60
- cd path/to_project
60
+ cd projects/the_project
61
61
62
- # run the build command for each output
63
62
rye build --wheel
64
- rye build --sdist
65
63
```
66
64
67
65
#### uv
68
66
``` shell
69
- cd path/to_project
70
-
71
- uvx --from build pyproject-build --installer uv
67
+ uv build --wheel projects/the_project
72
68
```
73
69
74
-
75
- This command will create a project specific _ dist_ folder containing a _ wheel_ and an _ sdist_ .
76
- You can use the available __ build__ options with this command too.
70
+ This command will create a project specific _ dist_ folder containing a _ wheel_ with all the needed bricks.
77
71
78
72
## Deploying
79
73
You can use the built artifacts to install your service in your preffered way, just by running
You can’t perform that action at this time.
0 commit comments