I'm using AWS CodeArtifact and I want to install all dependencies with an uv command — without running anything, just to have the dependencies available for my IDE after cloning the project —.
Currently, the only way I could find is to have a script (e.g. install_requirements.sh) in each project that would export UV_EXTRA_INDEX_URL (except that I personnally use the SSO profile with --profile option in AWS CLI), then run the uv pip install command.
Is there something planned to have something defined somewhere (e.g. some uv install hooks?) that would be automatically used by an uv command to install dependencies, without a custom script?
The idea is that, if someone wants to clone a repo to start working on it, there would be an official way to do that.
I'm using AWS CodeArtifact and I want to install all dependencies with an uv command — without running anything, just to have the dependencies available for my IDE after cloning the project —.
Currently, the only way I could find is to have a script (e.g.
install_requirements.sh
) in each project that would export UV_EXTRA_INDEX_URL (except that I personnally use the SSO profile with--profile
option in AWS CLI), then run theuv pip install
command.Is there something planned to have something defined somewhere (e.g. some
uv
install hooks?) that would be automatically used by anuv
command to install dependencies, without a custom script? The idea is that, if someone wants to clone a repo to start working on it, there would be an official way to do that.