-
-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 669 Bytes
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 669 Bytes
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
[project]
name = "depthflow"
description = "🌊 Images to parallax effect videos"
authors = [{name="Tremeschin"}]
version = "0.10.0"
readme = "readme.md"
license = "AGPL-3.0"
requires-python = ">=3.10"
dependencies = [
"attrs",
"cyclopts",
"diskcache",
"gradio~=6.0",
"imageio",
"numpy",
"pillow",
"platformdirs",
"pooch",
"pydantic",
"scipy",
"shaderflow",
"torch",
"torchvision",
"transformers",
"xxhash",
]
[project.scripts]
depthflow = "depthflow.__main__:main"
depth = "depthflow.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"