You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been testing a bit. (More since my email earlier.)
You can add a doc string to the module here:
/// Numgrid is a library that produces numerical integration
/// grid for molecules based on atom coordinates, atom types,
/// and basis set information. This library provides Rust and
/// Python bindings.
#[pymodule]
fn numgrid(_py: Python, m: &PyModule) -> PyResult<()> {
NAME
numgrid
DESCRIPTION
Numgrid is a library that produces numerical integration
grid for molecules based on atom coordinates, atom types,
and basis set information. This library provides Rust and
Python bindings.
FUNCTIONS
angular_grid(num_points)
Returns angular grid points or something like that.
atom_grid(...)
atom_grid_bse(...)
radial_grid(...)
I would be nice if the function Pyo3 picked up the function signatures automatically. There also seems to be no way to use type annotation and to annotate return values but I suppose this can be described in the doc string if needed.
No description provided.
The text was updated successfully, but these errors were encountered: