From 93419a0c79dd0584954f1a83dec2682eeb00732c Mon Sep 17 00:00:00 2001 From: Henry Schreiner <HenrySchreinerIII@gmail.com> Date: Tue, 29 Nov 2022 14:17:48 -0500 Subject: [PATCH] chore: re-add metadata --- pyproject.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index bfec32a..3086f60 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,22 @@ build-backend = "scikit_build_core.build" [project] name = "scikit_build_example" version = "0.0.1" +description="A minimal example package (with pybind11)", +readme = "README.md" +authors = [ + { name = "My Name", email = "me@email.com" }, +] requires-python = ">=3.7" +classifiers = [ + "Development Status :: 4 - Beta", + "License :: OSI Approved :: MIT License", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", +] [project.optional-dependencies] test = ["pytest"] -- GitLab