Wrap Julia and my own julia app/package in a conda package

Hi there

I have developed a Julia app (package) that depends on other Julia packages developed by myself. I need to wrap everything in a conda package, including Julia itself. Any advice on how to do that?

thanks

You can use GitHub - JuliaPy/pyjuliapkg: Manage your Julia dependencies from Python to handle installing Julia and any required Julia packages. It’s what JuliaCall uses.

Should work, as long as your own packages are registered.

thank you for the answer. Do you know how to proceed if I don’t have the depencies registered? I don’t want to register them yet, because, while they have very valuable functions for me, registering means more work to make them “nice” for the public.