-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
38 lines (36 loc) · 847 Bytes
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "vsrealesrgan"
version = "5.1.0"
description = "Real-ESRGAN function for VapourSynth"
readme = "README.md"
requires-python = ">=3.10"
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "HolyWu", email = "holywu@gmail.com" },
]
keywords = [
"PyTorch",
"Real-ESRGAN",
"TensorRT",
"VapourSynth",
]
classifiers = [
"Environment :: GPU :: NVIDIA CUDA",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Video",
]
dependencies = [
"numpy",
"requests",
"torch>=2.6.0.dev",
"tqdm",
"VapourSynth>=66",
]
[project.urls]
Homepage = "https://github.com/HolyWu/vs-realesrgan"
Issues = "https://github.com/HolyWu/vs-realesrgan/issues"