Skip to content
Snippets Groups Projects
Cargo.toml 823 B
Newer Older
[package]
name = "lightmotif-py"
Martin Larralde's avatar
Martin Larralde committed
version = "0.1.1"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
edition = "2021"
license = "MIT"
description = "PyO3 bindings and Python interface to the lightmotif crate."
repository = "https://github.com/althonos/lightmotif"
homepage = "https://github.com/althonos/lightmotif"
readme = "README.md"
categories = ["science"]
keywords = ["bioinformatics", "python", "bindings", "pssm"]

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies.lightmotif]
path = "../lightmotif"
Martin Larralde's avatar
Martin Larralde committed
version = "0.1.1"
[dependencies]
pyo3 = "0.18.3"
typenum = "1.16"
generic-array = "0.14"
extension-module = ["pyo3/extension-module"]
nightly = ["pyo3/nightly"]

[[test]]
name = "unittest"
path = "lightmotif/tests/unittest.rs"
harness = false