-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (52 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
55 lines (52 loc) · 1.22 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
[build-system]
requires = [
"scikit-build-core>=0.12",
"cython>=3.0",
"cython-cmake>=0.2"
]
build-backend = "scikit_build_core.build"
[project]
name = "pygui_cython"
description = "Dear ImGui in Python! A dynamically generated Cython wrapper of dear_bindings"
version = "1.92.6.3"
requires-python = ">=3.12"
authors = [
{ name="JaedanC" },
]
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"Cython==3.0.6",
"diff-match-patch",
"glfw",
"numpy",
"Pillow",
"ply",
"PyOpenGL",
"scikit-build",
"setuptools",
]
[project.urls]
Repository = "https://github.com/JaedanC/pygui.git"
Changelog = "https://github.com/JaedanC/pygui/releases"
[tool.scikit-build]
wheel.packages = ["src/binding/core"]
wheel.cmake = true
cmake.build-type = "Release"
build.verbose = true
build-dir = "out/scikit-build" # To allow for caching
editable.mode = "redirect"
sdist.include = [
"CMakeLists.txt",
"src/binding/core/core.pyx",
"src/binding/core/dcimgui.pxd",
"src/c/**",
"src/external/dear_bindings/generated/**",
"src/external/glfw/**",
"src/external/imgui/**.cpp",
"src/external/imgui/**.h",
"src/deploy/app.py",
"src/deploy/assets/**",
"src/deploy/pygui_cython/pygui_demo.py",
]