From 53ea7358424913fcdba1a7a11c503aa184ec51ad Mon Sep 17 00:00:00 2001 From: Shunsuke Shibayama Date: Tue, 13 Dec 2022 16:11:02 +0900 Subject: [PATCH] Create pyproject.toml --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..5201d23 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,10 @@ +[build-system] +requires = ["maturin>=0.12"] +build-backend = "maturin" + +[project] +name = "pype-analyzer" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Rust", +]