-
Notifications
You must be signed in to change notification settings - Fork 448
/
pyproject.toml
66 lines (56 loc) · 2.03 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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',
'Programming Language :: Python :: 3.12',
'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 = {}