blender_manifest.toml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. schema_version = "1.0.0"
  2. # Example of manifest file for a Blender extension
  3. # Change the values according to your extension
  4. id = "mantis"
  5. version = "0.12.28"
  6. name = "Mantis"
  7. tagline = "Mantis is a rigging nodes toolkit"
  8. maintainer = "Nodespaghetti <josephbburg@protonmail.com>"
  9. # Supported types: "add-on", "theme"
  10. type = "add-on"
  11. # Optional link to documentation, support, source files, etc
  12. # website = "https://extensions.blender.org/add-ons/my-example-package/"
  13. # Optional list defined by Blender and server, see:
  14. # https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html
  15. tags = ["Rigging", "Node"]
  16. blender_version_min = "4.2.0"
  17. # # Optional: Blender version that the extension does not support, earlier versions are supported.
  18. # # This can be omitted and defined later on the extensions platform if an issue is found.
  19. # blender_version_max = "4.5.0"
  20. # License conforming to https://spdx.org/licenses/ (use "SPDX: prefix)
  21. # https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html
  22. license = [
  23. "SPDX:GPL-3.0-or-later",
  24. ]
  25. # Optional: required by some licenses.
  26. # copyright = [
  27. # "2002-2024 Developer Name",
  28. # "1998 Company Name",
  29. # ]
  30. # Optional list of supported platforms. If omitted, the extension will be available in all operating systems.
  31. platforms = ["windows-x64", "macos-arm64", "linux-x64"]
  32. # platforms = ["linux-x64"]
  33. # Other supported platforms: "windows-arm64", "macos-x64"
  34. # Optional: bundle 3rd party Python modules.
  35. # https://docs.blender.org/manual/en/dev/advanced/extensions/python_wheels.html
  36. wheels = [
  37. "./wheels/grandalf-0.8-py3-none-any.whl",
  38. ]
  39. # # Optional: add-ons can list which resources they will require:
  40. # # * files (for access of any filesystem operations)
  41. # # * network (for internet access)
  42. # # * clipboard (to read and/or write the system clipboard)
  43. # # * camera (to capture photos and videos)
  44. # # * microphone (to capture audio)
  45. # #
  46. # # If using network, remember to also check `bpy.app.online_access`
  47. # # https://docs.blender.org/manual/en/dev/advanced/extensions/addons.html#internet-access
  48. # #
  49. # # For each permission it is important to also specify the reason why it is required.
  50. # # Keep this a single short sentence without a period (.) at the end.
  51. # # For longer explanations use the documentation or detail page.
  52. #
  53. # [permissions]
  54. # network = "Need to sync motion-capture data to server"
  55. # files = "Import/export FBX from/to disk"
  56. # clipboard = "Copy and paste bone transforms"
  57. # Optional: build settings.
  58. # https://docs.blender.org/manual/en/dev/advanced/extensions/command_line_arguments.html#command-line-args-extension-build
  59. # [build]
  60. # paths_exclude_pattern = [
  61. # "__pycache__/",
  62. # "/.git/",
  63. # "/*.zip",
  64. # ]
  65. website = "https://nodes.tools"