File: README.md

package info (click to toggle)
python-maturin 1.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,540 kB
  • sloc: python: 656; javascript: 93; sh: 55; makefile: 10
file content (30 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# pyo3-mixed-implicit

A package for testing maturin with a mixed pyo3/python project with an implicit namespace package and Rust submodule.

## Usage

```bash
pip install .
```

```python
import pyo3_mixed_implicit
assert pyo3_mixed_implicit.some_rust.get_22() == 22
```

## Testing

Install tox:

```bash
pip install tox
```

Run it:

```bash
tox
```

The tests are in `tests/test_pyo3_mixed_implicit.py`, while the configuration is in tox.ini