Setuptools helpers for rust Python extensions.
Compile and distribute Python extensions written in rust as easily as if they were written in C.
Well, maybe easier - it's rust.
from setuptools import setup
from rust_ext import build_rust_cmdclass, install_lib_including_rust
setup(name='hello-rust',
version='1.0',
cmdclass={
# This enables 'setup.py build_rust', and makes it run
# 'cargo extensions/cargo.toml' before building your package.
'build_rust': build_rust_cmdclass('extensions/cargo.toml'),
# This causes your rust binary to be automatically installed
# with the package when install_lib runs (including when you
# run 'setup.py install'.
'install_lib': install_lib_including_rust
},
packages=['hello_rust'],
# rust extensions are not zip safe, just like C-extensions.
zip_safe=False
)
You can optionally pass additional arguments to cargo through build_rust_cmdclass - see https://github.com/novocaine/rust-python-ext/blob/master/rust_ext/__init__.py.
➜ example git:(master) ✗ python setup.py install
.. yada yada yada ..
running build_rust
cargo build --manifest-path extensions/cargo.toml --release
Updating registry `https://github.com/rust-lang/crates.io-index`
Updating git repository `https://github.com/alexcrichton/pkg-config-rs.git`
Downloading regex v0.1.38
Compiling pkg-config v0.3.5 (https://github.com/alexcrichton/pkg-config-rs.git#42f1704b)
Compiling regex-syntax v0.1.2
Compiling rustc-serialize v0.3.15
Compiling memchr v0.1.3
Compiling aho-corasick v0.2.1
Compiling regex v0.1.38
Compiling python27-sys v0.0.6 (file:///Users/jsalter/dev/rust-cpython/python27-sys)
Compiling num v0.1.25
Compiling cpython v0.0.1 (file:///Users/jsalter/dev/rust-cpython)
Compiling hello-world v0.0.1 (file:///Users/jsalter/Documents/dev/rust-ext/example/extensions)
.. yada yada yada ..
Installed /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/hello_rust-1.0-py2.7.egg
Processing dependencies for hello-rust==1.0
Finished processing dependencies for hello-rust==1.0
➜ example git:(master) ✗ python
Python 2.7.9 (v2.7.9:648dcafa7e5f, Dec 10 2014, 10:10:46)
[GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwin
Type "help", "copyright", "credits" or "license" for more information
>>> import hello_rust
>>> hello_rust.hello()
Rust says: Hello Python!
Install:
pip install https://github.com/novocaine/rust-python-ext/zipball/master
Note that I didn't ever upload this extension to pypi - the version that's there has been put there has been uploaded by someone else and is old.
Compile the example:
cd example
python setup.py install
python -c 'import hello_rust; hello_rust.hello()'
If you are not pretty confident with Python C extensions already, it is recommended that you base your project off the code in the example directory. This gives you a sensible layout and something that is already compiling.
-
Supports Python 2.7 and Python 3.6 on Linux and OS X (tested by travis CI)
-
Unlike distutils, rust-python-ext delegates all rust build decisions to cargo. So you can't pass compiler args to the compiler from setup.py. This is by design. Cargo's awesome - use that. You can however pass args to cargo which might then influence what it does.
-
If you want to access the python C API from rust, use https://github.com/dgrunwald/rust-cpython. The example dir contains a project that shows how this is done.
-
If you don't explicitly pass
ext_name
tobuild_rust_cmdclass
, your extensions will be be named according to your lib's name incargo.toml
, with thelib
prefix stripped out so that it looks like a regular Python module as per the c-ext convention. If you want it to start withlib
or be named something else, pass a value toext_name
. -
This should interop just fine with other C-exts or cython being in the package, although I haven't tested it. The cmdclass approach is minimally invasive and is how, I believe, the setuptools god intends things to be. There is no monkey-patching or hacking of distutils internals.
-
As per the above, you don't have to use the supplied cmdclass helper for
install_lib
if you don't want to, it just means thatinstall
will automatically triggerbuild_rust
. -
You can use
setup.py develop
to put your module's code on PYTHONPATH without installing it, as you can with other extensions. This automatically enables --inplace.
- Windows
- An example using CFFI and/or ctypes
clean
command