mirror of
https://github.com/Magnus167/msyrs.git
synced 2025-08-20 13:10:00 +00:00
33 lines
729 B
Rust
33 lines
729 B
Rust
// #![doc = include_str!("../README.md")]
|
|
|
|
//! # msyrs
|
|
//!
|
|
//! A Rust implementation of the [Macrosynergy Python Package](https://github.com/macrosynergy/macrosynergy).
|
|
//!
|
|
//! ## Build and install the Python package
|
|
//!
|
|
//! ```bash
|
|
//! python -m venv .venv
|
|
//! # source .venv/bin/activate
|
|
//! ./.venv/Scripts/activate
|
|
//! pip install maturin
|
|
//! maturin develop --release
|
|
//! ```
|
|
//!
|
|
|
|
/// Documentation and type-stubs for the `msyrs` Python API.
|
|
pub mod py;
|
|
|
|
/// Implementation for the `download` module.
|
|
pub mod download;
|
|
|
|
/// Implementation for the `utils` module.
|
|
pub mod utils;
|
|
|
|
/// Implementation for the `panel` module.
|
|
pub mod panel;
|
|
|
|
/// PyO3 bindings for the `msyrs` Python API.
|
|
#[allow(unused_imports)]
|
|
use py::msyrs;
|