Skip to content

Commit

Permalink
Support dependencies contained within addon
Browse files Browse the repository at this point in the history
  • Loading branch information
n-jay committed Jul 14, 2024
1 parent b05f70a commit 8c13425
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions cuesubmit/plugins/blender/OpenCue-Blender/Setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,11 @@

blender_dependencies_directory = "lib/python3.10/site-packages"
blender_dependencies_path = os.path.join(sys.prefix, blender_dependencies_directory)
opencue_blender_path = os.path.dirname(__file__)

opencue_home = os.environ['OPENCUE_HOME']
pyoutline_directory = "pyoutline/outline"
filesequence_directory = "pycue/FileSequence"
opencue_directory = "pycue/opencue"

pyoutline_path = os.path.join(opencue_home, pyoutline_directory)
filesequence_path = os.path.join(opencue_home, filesequence_directory)
opencue_path = os.path.join(opencue_home, opencue_directory)
pyoutline_path = os.path.join(opencue_blender_path, "dependencies", "outline")
filesequence_path = os.path.join(opencue_blender_path, "dependencies", "FileSequence")
opencue_path = os.path.join(opencue_blender_path, "dependencies", "opencue")

pyoutline_directory = "outline"
opencue_imported_directory = "opencue"
Expand Down

0 comments on commit 8c13425

Please sign in to comment.