-
Notifications
You must be signed in to change notification settings - Fork 0
/
venv.fish
46 lines (39 loc) · 1018 Bytes
/
venv.fish
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
begin
function _get_default_dir
set default_dir $VIRTUAL_ENV_DIR
if test -z "$default_dir"
set default_dir ".venv"
end
echo $default_dir
end
function _remove_venv
set default_dir (_get_default_dir)
if test -d $default_dir
rm -rf $default_dir
else
echo -s \
(set_color yellow) \
"$default_dir not found" \
(set_color normal)
end
end
function _create_venv
command python3 -m venv (_get_default_dir)
if functions -q activate
activate -v
and if command -q pip
pip install -U pip
end
end
end
function venv -d 'Handy wrapper for `python3 -m venv`'
if contains -- --rm $argv
_remove_venv
else if contains -- --reset $argv
_remove_venv
and _create_venv
else
_create_venv
end
end
end