forked from AmusementClub/vs-dfttest2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.06 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
[build-system]
requires = ["hatchling>=1.30", "packaging>=24.0"]
build-backend = "hatchling.build"
[project]
name = "vapoursynth-dfttest2"
version = "10.0"
description = "DFTTest2 frequency-domain denoiser plugin for VapourSynth"
readme = "README.md"
license = { file = "LICENSE" }
license-files = ["LICENSE"]
requires-python = ">=3.12"
authors = [{ name = "DFTTest2 contributors" }]
dependencies = ["VapourSynth>=77"]
[project.urls]
"Source Code" = "https://github.com/RyougiKukoc/vs-dfttest2-api4"
"Releases" = "https://github.com/RyougiKukoc/vs-dfttest2-api4/releases"
[tool.hatch.build.targets.sdist]
include = [
"CMakeLists.txt",
"LICENSE",
"README.md",
"common",
"cpu_source",
"dfttest2",
"dfttest2.py",
"hatch_build.py",
"nvrtc_source",
"pyproject.toml",
"tools",
]
[tool.hatch.build.targets.wheel]
include = [
"dfttest2",
"vapoursynth/plugins",
]
artifacts = [
"vapoursynth/plugins/**/*.dll",
"vapoursynth/plugins/**/manifest.vs",
"vapoursynth/plugins/**/LICENSE",
]
[tool.hatch.build.targets.wheel.hooks.custom]
path = "hatch_build.py"