-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 997 Bytes
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) · 997 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
35
36
37
38
39
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bernini"
version = "0.1.0"
description = "Bernini: unified video / image generation and editing inference (Wan2.2-based)"
readme = "README.md"
# Open-VeOmni (a required dependency) needs Python 3.11.
requires-python = ">=3.11"
license = { file = "LICENSE" }
dependencies = [
"torch>=2.4.0",
"diffusers==0.35.2",
"accelerate==0.34.2",
"transformers==4.57.3",
"safetensors",
"einops",
"numpy",
"Pillow",
"tqdm",
"ftfy",
"decord",
"imageio",
"imageio-ffmpeg",
# Required by all inference paths (incl. single-GPU). When the torch build
# matters (e.g. a pinned CUDA wheel), install it manually with --no-deps
# instead -- see requirements.txt.
"veomni",
]
[project.optional-dependencies]
# Prompt engineering via an OpenAI-compatible endpoint.
pe = ["openai"]
[tool.setuptools.packages.find]
include = ["bernini*"]