forked from Blaizzy/mlx-video
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (51 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
59 lines (51 loc) · 1.48 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlx-video"
dynamic = ["version"]
description = "MLX-Video is the best package for inference and finetuning of Image-Video-Audio generation models on your Mac using MLX."
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"mlx>=0.22.0",
"numpy",
"safetensors",
"huggingface_hub",
"transformers[tokenizers]",
"tqdm",
"opencv-python>=4.12.0.88",
"Pillow>=10.3.0",
"mlx-vlm",
"imageio>=2.37.2",
"imageio-ffmpeg>=0.6.0",
"ftfy",
]
license = {text="MIT"}
authors = [
{name = "Prince Canuma", email = "prince.gdt@gmail.com"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/Blaizzy/mlx-video"
Repository = "https://github.com/Blaizzy/mlx-video"
Issues = "https://github.com/Blaizzy/mlx-video/issues"
[project.scripts]
"mlx_video.generate" = "mlx_video.generate:main"
"mlx_video.generate_wan" = "mlx_video.generate_wan:main"
[tool.setuptools.packages.find]
include = ["mlx_video*"]
[tool.setuptools.dynamic]
version = {attr = "mlx_video.version.__version__"}
[project.optional-dependencies]
dev = [
"pytest",
]