From 8c9034e7d955c16d970e5609eec968b650ee860a Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Fri, 22 Nov 2024 13:38:02 +0000 Subject: [PATCH] updating pyproject --- .gitignore | 2 +- pyproject.toml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 53a9aa8..ee410c0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,5 @@ __pycache__/ *.log .idea/ /target - +build/ data/ \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 4d60e63..8507420 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,16 @@ requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" +[project] +name = "msyrs" +version = "0.0.1" +requires-python = ">=3.7" +classifiers = [ + "Programming Language :: Rust", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", +] + [tool.maturin] # "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so) features = ["pyo3/extension-module"]