Commit 23e52af
Add build-system table for build instructions
The `libs/gl-testserver/pyproject.toml` file is missing the [build-system] table, which is strongly recommended for any Python project intended to be built and installed.
The [build-system] table is crucial because it defines two key things :
- requires: A list of dependencies needed to build your project.
- build-backend: The Python object that will perform the build.
Without this section, tools like `uv` and `pip` do not know how to build and install the package from its source, even if all other project metadata is correctly specified.1 parent 6841bf0 commit 23e52af
1 file changed
+12
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
15 | 15 | | |
16 | 16 | | |
17 | 17 | | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
0 commit comments