From 2b059124eb84ff886f043a707434fcb703139f57 Mon Sep 17 00:00:00 2001 From: James Turk Date: Sun, 26 Mar 2023 19:32:12 -0500 Subject: [PATCH] add python feature --- Cargo.toml | 3 +++ pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0c1a8ea..86f9249 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,3 +24,6 @@ smallvec = "1.10.0" [dev-dependencies] csv = "1.1" + +[features] +python = [] \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index a04d9de..4e89011 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,5 +13,5 @@ classifiers = [ [tool.maturin] -features = ["pyo3/extension-module"] +features = ["pyo3/extension-module", "python"] python-source = "python"