diff --git a/quaddtype/pyproject.toml b/quaddtype/pyproject.toml index 3934183..dc9f777 100644 --- a/quaddtype/pyproject.toml +++ b/quaddtype/pyproject.toml @@ -1,7 +1,7 @@ [build-system] requires = [ "meson>=1.3.2", - "meson-python", + "meson-python>=0.18.0", "wheel", "numpy" ] @@ -12,8 +12,20 @@ name = "numpy_quaddtype" description = "Quad (128-bit) float dtype for numpy" version = "0.2.0" readme = 'README.md' -license = { file = "LICENSE" } +license = "BSD-3-Clause" +license-files = ["LICENSE"] authors = [{name = "Swayam Singh", email = "singhswayam008@gmail.com"}] +classifiers = [ + "Development Status :: 4 - Beta", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: Free Threading", + "Typing :: Typed", +] requires-python = ">=3.10.0" dependencies = [ "numpy" @@ -25,6 +37,11 @@ test = [ "pytest-run-parallel" ] +[project.urls] +Repository = "https://github.com/numpy/numpy-user-dtypes" +Documentation = "https://github.com/numpy/numpy-user-dtypes/tree/main/quaddtype" +Issues = "https://github.com/numpy/numpy-user-dtypes/issues" + [tool.pyright] include = ["numpy_quaddtype/*.pyi"] typeCheckingMode = "strict"