From f62a12ae916ec7c7486913daecab41bdfc0bc38d Mon Sep 17 00:00:00 2001 From: David Herberth Date: Sun, 29 Sep 2024 11:13:23 +0200 Subject: [PATCH] readme: add plugin section --- README.md | 6 ++++++ pyproject.toml | 9 +++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c64a376e..00d9d6ed 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,12 @@ The full code: [hellowindow2.cpp](example/c++/hellowindow2.cpp) More examples in the [examples directory](example/) of this repository. +## Plugins + +Glad [plugins](https://github.com/Dav1dde/glad/wiki/Extending-Glad) +maintained by the community to add support for more languages: + +- [Fortran](https://github.com/AarnoldGad/glad-fortran). ## Documentation diff --git a/pyproject.toml b/pyproject.toml index 086488a1..6fdae996 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,9 +7,9 @@ name = "glad2" dynamic = ["version"] description = "Multi-Language GL/GLES/EGL/GLX/VK/WGL Loader-Generator based on the official specifications." readme = "long_description.md" -license = {file = "LICENSE"} -authors = [ {name = "David Herberth", email = "github@dav1d.de"} ] -maintainers = [ {name = "David Herberth", email = "github@dav1d.de"} ] +license = { file = "LICENSE" } +authors = [{ name = "David Herberth", email = "github@dav1d.de" }] +maintainers = [{ name = "David Herberth", email = "github@dav1d.de" }] dependencies = ["Jinja2>=2.7,<4.0"] classifiers = [ 'Development Status :: 5 - Production/Stable', @@ -25,6 +25,7 @@ classifiers = [ 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', 'Topic :: Games/Entertainment', 'Topic :: Multimedia :: Graphics', 'Topic :: Multimedia :: Graphics :: 3D Rendering', @@ -58,7 +59,7 @@ fortran = ["glad2-fortran"] platforms = ["any"] [tool.setuptools.dynamic] -version = {attr = "glad.__version__"} +version = { attr = "glad.__version__" } [tool.setuptools.packages] find = {}