Conforming to extensions

This commit is contained in:
2025-11-06 10:04:46 -08:00
parent b660779ada
commit 3cb9220ebd
2 changed files with 24 additions and 42 deletions

View File

@@ -1,10 +1,10 @@
# https://docs.blender.org/manual/en/latest/advanced/extensions/getting_started.html
schema_version = "1.0.0"
# Example of manifest file for a Blender extension
# Change the values according to your extension
id = "soundobjects_blender_addon"
version = "0.0.2"
name = "Send Sounds to Pro Tools"
tags = ["Animation", "Object"]
tagline = "Render each speaker as a track in Pro Tools with panning"
maintainer = "Jamie Hardt"
type = "add-on"
@@ -12,3 +12,18 @@ blender_version_min = "4.5.3"
license = [
"SPDX:GPL-3.0-or-later",
]
website = "https://git.squad51.us/jamie/soundobjects_blender_addon"
platforms = ["macos-arm64", "windows-x64"]
[permissions]
network = "Communicates with Pro Tools via RPC, only localhost"
[build]
paths_exclude_pattern = [
"__pycache__/",
"/.git/",
"/*.zip",
"/.venv/",
".mypy_*",
".DS_Store"
]