The numpy backend for datar.
Note that only base APIs are implemented.
pip install -U datar-numpy
# or
pip install -U datar[numpy]from datar.base import ceiling
# without it
ceiling(1.2) # NotImplementedByCurrentBackendError
# with it
ceiling(1.2) # 2