Metadata-Version: 2.4
Name: datar-numpy
Version: 0.3.8
Summary: The numpy backend for datar
Author-email: pwwang <pwwang@pwwang.com>
License: MIT
License-File: LICENSE
Requires-Python: >=3.9
Requires-Dist: datar>0.15
Requires-Dist: numpy<3,>=2
Provides-Extra: all
Requires-Dist: scipy<2,>=1.8; extra == 'all'
Requires-Dist: wcwidth<1,>=0.2; extra == 'all'
Provides-Extra: scipy
Requires-Dist: scipy<2,>=1.8; extra == 'scipy'
Provides-Extra: wcwidth
Requires-Dist: wcwidth<1,>=0.2; extra == 'wcwidth'
Description-Content-Type: text/markdown

# datar-numpy

The numpy backend for [datar][1].

Note that only `base` APIs are implemented.

## Installation

```bash
pip install -U datar-numpy
# or
pip install -U datar[numpy]
```

## Usage

```python
from datar.base import ceiling

# without it
ceiling(1.2)  # NotImplementedByCurrentBackendError

# with it
ceiling(1.2)  # 2
```

[1]: https://github.com/pwwang/datar
