rustplotlib/
lib.rs

1#[cfg(feature = "native")]
2extern crate cpython;
3
4mod axes2d;
5mod figure;
6
7// re-exports
8pub mod backend;
9pub use axes2d::{Axes2D, PlotData, Scatter, Line2D, FillBetween};
10pub use backend::Backend;
11pub use figure::Figure;