2024-07-30 16:44:41 +02:00
|
|
|
schema_version = "1.0.0"
|
|
|
|
|
|
|
|
|
|
# Example of manifest file for a Blender extension
|
|
|
|
|
# Change the values according to your extension
|
|
|
|
|
id = "my_example_extension"
|
|
|
|
|
version = "1.0.0"
|
2024-09-30 16:08:06 +02:00
|
|
|
name = "My Example Extension"
|
2024-07-30 16:44:41 +02:00
|
|
|
tagline = "This is another extension"
|
|
|
|
|
maintainer = "Developer name <email@address.com>"
|
|
|
|
|
# Supported types: "add-on", "theme"
|
|
|
|
|
type = "add-on"
|
|
|
|
|
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Optional: link to documentation, support, source files, etc
|
2024-07-30 16:44:41 +02:00
|
|
|
# website = "https://extensions.blender.org/add-ons/my-example-package/"
|
|
|
|
|
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Optional: tag list defined by Blender and server, see:
|
|
|
|
|
# # https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html
|
|
|
|
|
# tags = ["Animation", "Sequencer"]
|
2024-07-30 16:44:41 +02:00
|
|
|
|
|
|
|
|
blender_version_min = "4.2.0"
|
|
|
|
|
# # Optional: Blender version that the extension does not support, earlier versions are supported.
|
|
|
|
|
# # This can be omitted and defined later on the extensions platform if an issue is found.
|
|
|
|
|
# blender_version_max = "5.1.0"
|
|
|
|
|
|
|
|
|
|
# License conforming to https://spdx.org/licenses/ (use "SPDX: prefix)
|
|
|
|
|
# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html
|
|
|
|
|
license = [
|
2024-08-22 10:54:00 +02:00
|
|
|
"SPDX:GPL-3.0-or-later",
|
2024-07-30 16:44:41 +02:00
|
|
|
]
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Optional: required by some licenses.
|
2024-07-30 16:44:41 +02:00
|
|
|
# copyright = [
|
|
|
|
|
# "2002-2024 Developer Name",
|
|
|
|
|
# "1998 Company Name",
|
|
|
|
|
# ]
|
|
|
|
|
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Optional: list of supported platforms. If omitted, the extension will be available in all operating systems.
|
2024-07-30 16:44:41 +02:00
|
|
|
# platforms = ["windows-x64", "macos-arm64", "linux-x64"]
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Other supported platforms: "windows-arm64", "macos-x64"
|
2024-07-30 16:44:41 +02:00
|
|
|
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Optional: bundle 3rd party Python modules.
|
|
|
|
|
# # https://docs.blender.org/manual/en/dev/advanced/extensions/python_wheels.html
|
2024-07-30 16:44:41 +02:00
|
|
|
# wheels = [
|
|
|
|
|
# "./wheels/hexdump-3.3-py3-none-any.whl",
|
|
|
|
|
# "./wheels/jsmin-3.0.1-py3-none-any.whl",
|
|
|
|
|
# ]
|
|
|
|
|
|
|
|
|
|
# # Optional: add-ons can list which resources they will require:
|
|
|
|
|
# # * files (for access of any filesystem operations)
|
|
|
|
|
# # * network (for internet access)
|
|
|
|
|
# # * clipboard (to read and/or write the system clipboard)
|
|
|
|
|
# # * camera (to capture photos and videos)
|
|
|
|
|
# # * microphone (to capture audio)
|
|
|
|
|
# #
|
|
|
|
|
# # If using network, remember to also check `bpy.app.online_access`
|
|
|
|
|
# # https://docs.blender.org/manual/en/dev/advanced/extensions/addons.html#internet-access
|
|
|
|
|
# #
|
|
|
|
|
# # For each permission it is important to also specify the reason why it is required.
|
|
|
|
|
# # Keep this a single short sentence without a period (.) at the end.
|
|
|
|
|
# # For longer explanations use the documentation or detail page.
|
|
|
|
|
#
|
|
|
|
|
# [permissions]
|
|
|
|
|
# network = "Need to sync motion-capture data to server"
|
|
|
|
|
# files = "Import/export FBX from/to disk"
|
|
|
|
|
# clipboard = "Copy and paste bone transforms"
|
|
|
|
|
|
2024-09-30 16:08:06 +02:00
|
|
|
# # Optional: advanced build settings.
|
|
|
|
|
# # https://docs.blender.org/manual/en/dev/advanced/extensions/command_line_arguments.html#command-line-args-extension-build
|
2024-07-30 16:44:41 +02:00
|
|
|
# [build]
|
2024-09-30 16:08:06 +02:00
|
|
|
# # These are the default build excluded patterns.
|
|
|
|
|
# # You only need to edit them if you want different options.
|
2024-07-30 16:44:41 +02:00
|
|
|
# paths_exclude_pattern = [
|
|
|
|
|
# "__pycache__/",
|
|
|
|
|
# "/.git/",
|
|
|
|
|
# "/*.zip",
|
2025-02-02 13:56:48 +11:00
|
|
|
# ]
|