Skip to content

Commit f62a12a

Browse files
committed
readme: add plugin section
1 parent 7b120b2 commit f62a12a

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ The full code: [hellowindow2.cpp](example/c++/hellowindow2.cpp)
4242

4343
More examples in the [examples directory](example/) of this repository.
4444

45+
## Plugins
46+
47+
Glad [plugins](https://github.com/Dav1dde/glad/wiki/Extending-Glad)
48+
maintained by the community to add support for more languages:
49+
50+
- [Fortran](https://github.com/AarnoldGad/glad-fortran).
4551

4652
## Documentation
4753

pyproject.toml

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ name = "glad2"
77
dynamic = ["version"]
88
description = "Multi-Language GL/GLES/EGL/GLX/VK/WGL Loader-Generator based on the official specifications."
99
readme = "long_description.md"
10-
license = {file = "LICENSE"}
11-
authors = [ {name = "David Herberth", email = "[email protected]"} ]
12-
maintainers = [ {name = "David Herberth", email = "[email protected]"} ]
10+
license = { file = "LICENSE" }
11+
authors = [{ name = "David Herberth", email = "[email protected]" }]
12+
maintainers = [{ name = "David Herberth", email = "[email protected]" }]
1313
dependencies = ["Jinja2>=2.7,<4.0"]
1414
classifiers = [
1515
'Development Status :: 5 - Production/Stable',
@@ -25,6 +25,7 @@ classifiers = [
2525
'Programming Language :: Python :: 3.9',
2626
'Programming Language :: Python :: 3.10',
2727
'Programming Language :: Python :: 3.11',
28+
'Programming Language :: Python :: 3.12',
2829
'Topic :: Games/Entertainment',
2930
'Topic :: Multimedia :: Graphics',
3031
'Topic :: Multimedia :: Graphics :: 3D Rendering',
@@ -58,7 +59,7 @@ fortran = ["glad2-fortran"]
5859
platforms = ["any"]
5960

6061
[tool.setuptools.dynamic]
61-
version = {attr = "glad.__version__"}
62+
version = { attr = "glad.__version__" }
6263

6364
[tool.setuptools.packages]
6465
find = {}

0 commit comments

Comments
 (0)