16 lines
281 B
Markdown
16 lines
281 B
Markdown
# pybind11 example
|
|
|
|
## Building
|
|
|
|
```sh
|
|
xrepo env python -m pip install build
|
|
xrepo env python -m build -w
|
|
```
|
|
|
|
Wheels are built in the `dist` directory:
|
|
|
|
```sh
|
|
$ ls dist
|
|
example-0.0.1-cp313-cp313-linux_x86_64.whl
|
|
$ pip install dist/xmake_test-0.0.1-cp313-cp313-linux_x86_64.whl
|
|
``` |