mirror of
https://github.com/k4yt3x/video2x.git
synced 2026-02-21 14:24:53 +08:00
changed builder from setuptools to pdm
This commit is contained in:
@@ -1,3 +1,54 @@
|
||||
[project]
|
||||
name = "video2x"
|
||||
description = "A video/image upscaling and frame interpolation framework"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.7"
|
||||
license = { text = "AGPL-3.0-or-later" }
|
||||
keywords = [
|
||||
"super-resolution",
|
||||
"upscaling",
|
||||
"neural-network",
|
||||
"machine-learning",
|
||||
]
|
||||
authors = [{ name = "K4YT3X", email = "i@k4yt3x.com" }]
|
||||
classifiers = [
|
||||
"Environment :: Console",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Topic :: Multimedia :: Video",
|
||||
"Topic :: Scientific/Engineering :: Image Processing",
|
||||
]
|
||||
dependencies = [
|
||||
"ffmpeg-python>=0.2.0",
|
||||
"loguru>=0.6.0",
|
||||
"opencv-python>=4.5.5.62",
|
||||
"pillow>=9.0.1",
|
||||
"rich>=11.2.0",
|
||||
"waifu2x-ncnn-vulkan-python>=1.0.1",
|
||||
"srmd-ncnn-vulkan-python>=1.0.2",
|
||||
"realsr-ncnn-vulkan-python>=1.0.3",
|
||||
"rife-ncnn-vulkan-python==1.0.4",
|
||||
]
|
||||
dynamic = ["version"]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://github.com/k4yt3x/video2x/"
|
||||
documentation = "https://github.com/k4yt3x/video2x/wiki"
|
||||
repository = "https://github.com/k4yt3x/video2x.git"
|
||||
changelog = "https://github.com/k4yt3x/video2x/releases"
|
||||
|
||||
[project.scripts]
|
||||
video2x = "video2x:main"
|
||||
|
||||
[tool.pdm]
|
||||
version = { from = "video2x/__init__.py" }
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools>=46.4", "wheel", "setuptools_scm[toml]>=3.4.3"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
requires = ["pdm-pep517"]
|
||||
build-backend = "pdm.pep517.api"
|
||||
|
||||
Reference in New Issue
Block a user