templates/python-uv: init justfile
This commit is contained in:
parent
84428b7b9d
commit
9423b66264
|
@ -37,6 +37,7 @@
|
||||||
packages = [
|
packages = [
|
||||||
(pythonSet.mkVirtualEnv "python-uv-env" workspace.deps.all)
|
(pythonSet.mkVirtualEnv "python-uv-env" workspace.deps.all)
|
||||||
pkgs.python311Packages.uv
|
pkgs.python311Packages.uv
|
||||||
|
pkgs.just
|
||||||
config.treefmt.build.wrapper
|
config.treefmt.build.wrapper
|
||||||
];
|
];
|
||||||
env = [
|
env = [
|
||||||
|
|
7
templates/python-uv/justfile
Normal file
7
templates/python-uv/justfile
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
set shell := ["bash", "-c"]
|
||||||
|
|
||||||
|
add *name:
|
||||||
|
uv add {{name}} --no-sync
|
||||||
|
|
||||||
|
remove *name:
|
||||||
|
uv remove {{name}} --no-sync
|
Loading…
Reference in a new issue