30 lines
720 B
TOML
30 lines
720 B
TOML
# https://docs.blender.org/manual/en/latest/advanced/extensions/getting_started.html
|
|
schema_version = "1.0.0"
|
|
|
|
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"
|
|
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"
|
|
]
|