You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 301 B

12345678910111213141516171819
  1. This crate corresponds to the Node API for Dora.
  2. ## Building
  3. To build the Python module for development:
  4. ```bash
  5. uv venv --seed -p 3.11
  6. uv pip install -e .
  7. ```
  8. ## Type hinting
  9. Type hinting requires to run a second step
  10. ```bash
  11. python generate_stubs.py dora dora/__init__.pyi
  12. maturin develop
  13. ```