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
Build and publish crates with pyo3, rust-cpython and cffi bindings as well as rust binaries as python packages.
7
-
*`maturin publish` builds the crate into python packages and publishes them to pypi.
5
+
### Install
6
+
`pip install ulist`
7
+
8
+
9
+
### Build and publish
10
+
`ulist` is built and published by `maturin`. The useful commands are listed as below:
11
+
*`maturin develop` builds the crate and installs it as a python module directly in the current virtualenv. Note that while maturin develop is faster, it doesn't support all the features that running pip install after `maturin build` supports.
8
12
*`maturin build` builds the wheels and stores them in a folder (target/wheels by default), but doesn't upload them. It's possible to upload those with twine.
9
-
*`maturin develop` builds the crate and installs it as a python module directly in the current virtualenv. Note that while maturin develop is faster, it doesn't support all the feature that running pip install after `maturin build` supports.
10
13
*`maturin build --release` If we want to benchmark the package.
14
+
*`maturin publish` builds the crate into python packages and publishes them to pypi.
0 commit comments