-
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.
Answered by
wolfv
Aug 22, 2023
Replies: 1 comment
-
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.
0 replies
Answer selected by
b4rlw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 :)