-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.1 KB
/
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
39
40
41
42
43
44
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[project]
name = "vidscaler"
version = "2024.4.15"
requires-python = ">= 3.11"
authors = [{name = "nbdy"}]
maintainers = [{name = "nbdy"}]
readme = "README.md"
license = {text = "MIT License"}
keywords = ["video upscaler", "upscaling", "esrgan", "realesrgan", "gui"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"loguru",
"numpy",
"tqdm",
"py-real-esrgan",
"moviepy",
"customtkinter",
"opencv-python"
]
[project.urls]
Homepage = "https://github.com/nbdy/vidscaler"
Documentation = "https://github.com/nbdy/vidscaler/wiki"
Repository = "https://github.com/nbdy/vidscaler.git"
Issues = "https://github.com/nbdy/vidscaler/issues"
Changelog = "https://github.com/nbdy/vidscaler/blob/main/CHANGELOG.md"
[project.scripts]
vidscaler = "vidscaler:main"
[project.gui-scripts]
vidscaler-gui = "vidscaler:gui"