First commit. Separated project out from MTPy.

This commit is contained in:
2024-05-01 17:46:03 +01:00
commit b1f5f37fa2
9 changed files with 834 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
[package]
name = "read_aconity_layers"
version = "0.1.0"
edition = "2021"
[lib]
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
glob = "*"
ndarray = { version = "0.15.6", features = ["rayon"] }
numpy = "*"
pyo3 = { version = "0.18.1", features = ["extension-module"] }
csv = "*"
ndarray-csv = "*"
rayon = "*"
indicatif = "*"
[tool.maturin]
profile = "release"
all-features = true
manifest-path = "Cargo.toml"