-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.48 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
[build-system]
requires = ["meson-python", "VapourSynth>=74"]
build-backend = "mesonpy"
[project]
name = "vs-placebo"
description = "A VapourSynth plugin interface to libplacebo"
readme = "README.md"
requires-python = ">=3.12"
license = "LGPL-2.1"
authors = [
{name = "Lypheo"},
{name = "quietvoid", email = "tcChlisop0@gmail.com"},
{name = "sgt0"}
]
keywords = ["video"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: C",
"Topic :: Multimedia :: Video",
]
dependencies = ["VapourSynth>=74"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/Lypheo/vs-placebo.git"
Issues = "https://github.com/Lypheo/vs-placebo/issues"
[tool.meson-python.wheel]
exclude = ["*.dll.a", "*.lib"]
[tool.meson-python.args]
install = ['--skip-subprojects']
[tool.cibuildwheel]
build = "cp314-*"
build-frontend = "uv"
[tool.cibuildwheel.linux]
before-all = ["./cibw/before_all_linux.sh"]
[tool.cibuildwheel.linux.environment]
VULKAN_SDK_VERSION="1.4.341.0"
SHADERC_VERSION="2026.1"
LIBPLACEBO_TAG="master"
LIBDOVI_TAG="libdovi-3.3.2"
VULKAN_SDK_TAG="vulkan-sdk-${VULKAN_SDK_VERSION}"
SHADERC_TAG="v${SHADERC_VERSION}"
[tool.cibuildwheel.macos]
environment = { MACOSX_DEPLOYMENT_TARGET="15" }
before-all = ["./cibw/before_all_macos.sh"]