diff --git a/Cargo.toml b/Cargo.toml index aa4214b..f419f8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,3 @@ [workspace] -members = [ - "cli", - "lib", -] +resolver = "2" +members = ["cli", "lib"] diff --git a/pyproject.toml b/pyproject.toml index 59b7372..7e7c0bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["maturin>=0.14,<0.15"] +requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" [project] @@ -9,4 +9,11 @@ classifier = [ "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Topic :: Scientific/Engineering :: Bio-Informatics" -] \ No newline at end of file +]dynamic = ["version"] +readme = "README.md" + +[tool.maturin] +manifest-path = "lib/Cargo.toml" +bindings = "pyo3" +features = ["python"] +exclude = ["lib/README.md"]