diff --git a/pyproject.toml b/pyproject.toml index bfec32ae15278e32192fcb58d3fbf51b136f4ce9..3086f608353f412013ae6cc829b386e643e21e41 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"]