From 6815853f56393fae2c6ba981b2e3994cdc69e57d Mon Sep 17 00:00:00 2001 From: Christopher Berner Date: Mon, 3 Jul 2023 10:44:45 -0700 Subject: [PATCH] Fix maturin config --- Cargo.toml | 9 --------- pyproject.toml | 6 ++++++ 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3798e60..110a6d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -59,12 +59,3 @@ python = ["pyo3", "std"] serde_support = ["serde", "std"] std = [] wasm = ["wasm-bindgen", "js-sys", "std"] - -[package.metadata.maturin] -requires-python = ">= 3.7" -classifier = ["Development Status :: 4 - Beta", - "License :: OSI Approved :: Apache Software License", - "Programming Language :: Python", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Rust"] diff --git a/pyproject.toml b/pyproject.toml index 7121734..05a93c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,12 @@ name = "raptorq" requires-python = ">=3.7" dynamic = ["version"] +classifier = ["Development Status :: 4 - Beta", + "License :: OSI Approved :: Apache Software License", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Rust"] [build-system] requires = ["maturin>=0.11,<0.12"]