diff options
Diffstat (limited to 'run.m1.spec')
-rw-r--r-- | run.m1.spec | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/run.m1.spec b/run.m1.spec index 3eeea867..ad75856a 100644 --- a/run.m1.spec +++ b/run.m1.spec @@ -1,5 +1,6 @@ # -*- mode: python ; coding: utf-8 -*- import certifi +from PyInstaller.utils.hooks import copy_metadata block_cipher = None @@ -10,9 +11,9 @@ a = Analysis( binaries=[], datas=[ ('continuedev', 'continuedev'), - (certifi.where(), 'ca_bundle') - ], - hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron'], + (certifi.where(), 'ca_bundle'), + ] + copy_metadata('replicate'), + hiddenimports=['anthropic', 'github', 'ripgrepy', 'bs4', 'redbaron', 'replicate'], hookspath=[], hooksconfig={}, runtime_hooks=[], |