-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathblender_manifest.toml
69 lines (62 loc) · 3.26 KB
/
blender_manifest.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
schema_version = "1.0.0"
id = "diffused_texture_addon"
version = "0.0.3"
name = "DiffusedTexture"
tagline = "Generate Diffuse Textures on Meshes with Stable Diffusion"
maintainer = "Frederik Hasecke <[email protected]>"
type = "add-on"
website = "https://github.com/FrederikHasecke/diffused-texture-addon/"
tags = ["Material", "Paint"]
blender_version_min = "4.2.0"
license = ["SPDX:GPL-3.0-or-later"]
# ✅ Specify the supported platforms, but do not define per-platform lists
platforms = ["windows-x64", "linux-x64"]
# ✅ Flat list of wheels - Blender will split them automatically
wheels = [
# Common wheels (cross-platform)
"./wheels/certifi-2024.12.14-py3-none-any.whl",
"./wheels/colorama-0.4.6-py2.py3-none-any.whl",
"./wheels/filelock-3.16.1-py3-none-any.whl",
"./wheels/fsspec-2024.12.0-py3-none-any.whl",
"./wheels/idna-3.10-py3-none-any.whl",
"./wheels/importlib_metadata-8.5.0-py3-none-any.whl",
"./wheels/jinja2-3.1.5-py3-none-any.whl",
"./wheels/mpmath-1.3.0-py3-none-any.whl",
"./wheels/networkx-3.4.2-py3-none-any.whl",
"./wheels/packaging-24.2-py3-none-any.whl",
"./wheels/peft-0.14.0-py3-none-any.whl",
"./wheels/requests-2.32.3-py3-none-any.whl",
"./wheels/sympy-1.13.1-py3-none-any.whl",
"./wheels/tqdm-4.67.1-py3-none-any.whl",
"./wheels/typing_extensions-4.12.2-py3-none-any.whl",
"./wheels/urllib3-2.3.0-py3-none-any.whl",
"./wheels/zipp-3.21.0-py3-none-any.whl",
"./wheels/huggingface_hub-0.27.1-py3-none-any.whl",
"./wheels/accelerate-1.3.0-py3-none-any.whl",
"./wheels/transformers-4.48.0-py3-none-any.whl",
"./wheels/diffusers-0.32.2-py3-none-any.whl",
# ✅ Windows-specific wheels
"./wheels/scipy-1.15.1-cp311-cp311-win_amd64.whl",
"./wheels/charset_normalizer-3.4.1-cp311-cp311-win_amd64.whl",
"./wheels/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl",
"./wheels/PyYAML-6.0.2-cp311-cp311-win_amd64.whl",
"./wheels/psutil-6.1.1-cp311-abi3-win_amd64.whl",
"./wheels/regex-2024.11.6-cp311-cp311-win_amd64.whl",
"./wheels/pillow-11.1.0-cp311-cp311-win_amd64.whl",
"./wheels/opencv_python_headless-4.8.1.78-cp311-abi3-win_amd64.whl",
"./wheels/torch-2.5.1+cu118-cp311-cp311-win_amd64.whl",
"./wheels/tokenizers-0.21.0-cp311-abi3-win_amd64.whl",
"./wheels/safetensors-0.5.2-cp311-abi3-win_amd64.whl",
# ✅ Linux-specific wheels
"./wheels/scipy-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/charset_normalizer-3.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/psutil-6.1.1-cp311-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/regex-2024.11.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/pillow-11.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/opencv_python_headless-4.8.1.78-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/torch-2.5.1-cp311-cp311-manylinux1_x86_64.whl",
"./wheels/tokenizers-0.21.0-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"./wheels/safetensors-0.5.2-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"
]