-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (49 loc) · 1.47 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (49 loc) · 1.47 KB
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
[build-system]
requires = [
"scikit-build-core>=0.10.7",
"pybind11>=2.11.1",
]
build-backend = "scikit_build_core.build"
[project]
name = "truegraphics"
version = "1.0.0"
description = "TrueGraphics: a C++-accelerated GUI and graphics framework with Python bindings"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "LegedsDaD", email = "legendsdad001@gmail.com" },
]
keywords = ["gui", "graphics", "widgets", "renderer", "engine", "pybind11"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: User Interfaces",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/LegedsDaD/TrueGraphics"
Repository = "https://github.com/LegedsDaD/TrueGraphics"
[tool.scikit-build]
cmake.minimum-version = "3.20"
cmake.build-type = "Release"
wheel.packages = ["python/truegraphics"]
sdist.include = [
"engine/**",
"bindings/**",
"python/**",
"examples/**",
"CMakeLists.txt",
"README.md",
"MANUAL.md",
"LICENSE",
]