43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
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"]
|
|
wheels = [
|
|
'./wheels/grpcio-1.74.0-cp311-cp311-macosx_11_0_universal2.whl',
|
|
'./wheels/grpcio-1.74.0-cp311-cp311-win_amd64.whl',
|
|
'./wheels/iniconfig-2.3.0-py3-none-any.whl',
|
|
'./wheels/packaging-25.0-py3-none-any.whl',
|
|
'./wheels/pluggy-1.6.0-py3-none-any.whl',
|
|
'./wheels/protobuf-6.31.1-cp39-abi3-macosx_10_9_universal2.whl',
|
|
'./wheels/protobuf-6.31.1-cp310-abi3-win_amd64.whl',
|
|
'./wheels/py_ptsl-600.1.0-py3-none-any.whl',
|
|
'./wheels/pygments-2.19.2-py3-none-any.whl',
|
|
'./wheels/pytest-8.4.2-py3-none-any.whl'
|
|
]
|
|
|
|
[permissions]
|
|
network = "Communicates with Pro Tools via RPC, only localhost"
|
|
|
|
|
|
[build]
|
|
paths_exclude_pattern = [
|
|
"__pycache__/",
|
|
"/.git/",
|
|
"/*.zip",
|
|
"/.venv/",
|
|
".mypy_*",
|
|
".DS_Store"
|
|
]
|