-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (66 loc) · 1.79 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (66 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["scikit-build-core>=0.3.3"]
build-backend = "scikit_build_core.build"
[project]
name = "hgui"
version = "4.0.4"
authors = [
{ name = "Horizon-NTH" },
]
description = "Python binding of HorizonGUI a graphical interface in c++ with OpenGl"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: Libraries"
]
keywords = [
"hgui",
"GUI Library",
"User Interface Library",
"Cross-platform GUI",
"HorizonGUI",
"Horizon UI Library",
"Graphical User Interface Library",
"UI Toolkit",
"Horizon GUI Framework",
"HorizonUI",
"Modern UI Library",
"Customizable UI Components",
"GUI Development Kit",
"GUI Design Framework",
"GUI Widgets",
"HorizonGUI Components",
"HorizonUI Toolkit",
"User Interface Components",
"Horizon GUI Controls",
"HorizonUI Elements",
"Responsive UI Library"
]
[project.urls]
Homepage = "https://github.com/Horizon-NTH/HorizonGUI"
Repository = "https://github.com/Horizon-NTH/HorizonGUI"
Issues = "https://github.com/Horizon-NTH/HorizonGUI/issues"
Documentation = "https://github.com/Horizon-NTH/HorizonGUI/wiki"
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
build.verbose = true
logging.level = "INFO"
cmake.version = ">=3.15"
build-dir = "build"
cmake.source-dir = "python"
wheel.license-files = ["LICENSE"]
sdist.include = [
"README.md",
"LICENSE",
"CMakeLists.txt",
"python/**",
"src/**", "include/**",
"deps/libsndfile/**",
]