Skip to content

Commit

Permalink
glad: replace setup.py with pyproject.toml (#490)
Browse files Browse the repository at this point in the history
  • Loading branch information
AarnoldGad authored Sep 29, 2024
1 parent 0127717 commit 7b120b2
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 79 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ a.out
*.kdev_include_paths
main.c
*.diff
*.swp
.idea
dist/
*.egg-info
Expand All @@ -18,4 +19,4 @@ dist/
/rust/
target/
Cargo.lock
.vscode/
.vscode/
7 changes: 7 additions & 0 deletions long_description.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Glad
----

Glad uses the official Khronos-XML specs to generate a
GL/GLES/EGL/GLX/VK/WGL Loader made for your needs.

Checkout the GitHub repository: https://github.com/Dav1dde/glad
65 changes: 65 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
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 = "[email protected]"} ]
maintainers = [ {name = "David Herberth", email = "[email protected]"} ]
dependencies = ["Jinja2>=2.7,<4.0"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Games/Entertainment',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities'
]
keywords = ["opengl", "glad", "generator", "gl", "wgl", "egl", "gles", "vulkan", "vk", "glx"]

[project.urls]
Source = "https://github.com/Dav1dde/glad"

[project.scripts]
glad = "glad.__main__:main"

[project.entry-points."glad.generator"]
c = "glad.generator.c.__init__:CGenerator"
rust = "glad.generator.rust.__init__:RustGenerator"

[project.entry-points."glad.specification"]
egl = "glad.specification:EGL"
gl = "glad.specification:GL"
glx = "glad.specification:GLX"
wgl = "glad.specification:WGL"
vk = "glad.specification:VK"

[project.optional-dependencies]
fortran = ["glad2-fortran"]

[tool.setuptools]
platforms = ["any"]

[tool.setuptools.dynamic]
version = {attr = "glad.__version__"}

[tool.setuptools.packages]
find = {}

78 changes: 0 additions & 78 deletions setup.py

This file was deleted.

0 comments on commit 7b120b2

Please sign in to comment.