-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
39 lines (36 loc) · 912 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
39
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
exclude = [
"/test_images",
"/test_images_ex",
"/hybrid_setup"
]
[project]
name = "vsdeoldify"
version = "5.0.2"
description = "HAVC functions for VapourSynth"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [{name = "Dan64", email = "[email protected]"}]
keywords = ["Deoldify", "VapourSynth"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Video"
]
dependencies = [
"numpy>=1.26.2",
"vsddcolor>=1.0.0",
"fastai==1.0.60",
"torch>=2.1.1",
"pillow>=9.0.0",
"VapourSynth>=62",
"vstools>=2.1.0"
]
[project.urls]
"Homepage" = "https://github.com/dan64/vs-deoldify"
"Bug Tracker" = "https://github.com/dan64/vs-deoldify/issues"