-
Poetry has a section like this: [tool.poetry]
packages = [{include = "my_package", from = "src"}] so that a local package in a particular location can be installed when running Does Pixi have some analogous functionality, or are there any plans to introduce it? Thanks so much for building this awesome project for the Conda ecosystem! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @b4rlw indeed, we have plans for something like this. Our idea is that it will look like: mypkg = { git = "https://github.com/prefix-dev/pixi", rev = "main" }
otherpkg = { path = "../local/package" }
oreven = { package = "../oreven.conda" } We will first finish the package building (#12) and then the others should be relatively straight-forward :) |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hi @b4rlw indeed, we have plans for something like this.
Our idea is that it will look like:
We will first finish the package building (#12) and then the others should be relatively straight-forward :)