1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
# CLI Reference
Scikit-build-core has a few integrated CLI tools. These are not guaranteed to be
stable between releases yet, but can still be useful to investigate your
environment.
```{program-output} python -m scikit_build_core
```
## Build utilities
```{program-output} python -m scikit_build_core.build --help
```
### Build requirements
```{program-output} python -m scikit_build_core.build requires --help
```
Example:
```{command-output} python -m scikit_build_core.build requires
:cwd: ../examples/getting_started/c
```
### Project table
```{program-output} python -m scikit_build_core.build project-table --help
```
Example:
```{command-output} python -m scikit_build_core.build project-table
:cwd: ../examples/getting_started/c
```
## Building environment info
```{program-output} python -m scikit_build_core.builder.wheel_tag --help
```
Example:
```{command-output} python -m scikit_build_core.builder.wheel_tag
```
## File API tools
```{program-output} python -m scikit_build_core.file_api.query --help
```
```{program-output} python -m scikit_build_core.file_api.reply --help
```
|