zrb 0.7.1__py3-none-any.whl → 0.7.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -29,5 +29,15 @@ else
29
29
  echo "Cannot install go language server, is go installed?"
30
30
  fi
31
31
 
32
+ if command_exists hx
33
+ then
34
+ hx --grammar fetch
35
+ hx --grammar build
36
+ elif command_exists helix
37
+ then
38
+ helix --grammar fetch
39
+ helix --grammar build
40
+ fi
41
+
32
42
  set -e
33
43
  echo "Visit https://github.com/helix-editor/helix/wiki/How-to-install-the-default-language-servers for more information."
@@ -18,7 +18,7 @@ else
18
18
  if command_exists pkg
19
19
  then
20
20
  try_sudo pkg update
21
- try_sudo pkg install -y xclip helix
21
+ try_sudo pkg install -y helix
22
22
  elif command_exists apt
23
23
  then
24
24
  try_sudo add-apt-repository ppa:maveonair/helix-editor -y
@@ -46,13 +46,3 @@ else
46
46
  exit 1
47
47
  fi
48
48
  fi
49
-
50
- if command_exists hx
51
- then
52
- hx --grammar fetch
53
- hx --grammar build
54
- elif command_exists helix
55
- then
56
- helix --grammar fetch
57
- helix --grammar build
58
- fi
@@ -48,7 +48,7 @@ fi
48
48
  if command_exists chsh
49
49
  then
50
50
  echo "Changing default shell to zsh..."
51
- try_sudo chsh -s "$(command -v zsh)"
51
+ try_sudo chsh -s zsh
52
52
  else
53
53
  echo "chsh command not found. Please change the default shell manually."
54
54
  fi
@@ -131,3 +131,17 @@ KUBE_PS1_CTX_COLOR=cyan
131
131
  PROMPT='$(kube_ps1)'$PROMPT
132
132
 
133
133
  export COLORTERM=truecolor
134
+
135
+ # Activate pyenv if exists
136
+ if [ -d "${HOME}/.pyenv" ]
137
+ then
138
+ export PYENV_ROOT="$HOME/.pyenv"
139
+ export PATH="$PYENV_ROOT/bin:$PATH"
140
+ eval "$(pyenv init --path)"
141
+ fi
142
+
143
+ # Activate local venv if exists
144
+ if [ -f "${HOME}/.local-venv/bin/activate" ]
145
+ then
146
+ source "${HOME}/.local-venv/bin/activate"
147
+ fi
@@ -1,3 +1,13 @@
1
+ command_exists() {
2
+ command -v "$1" &> /dev/null
3
+ }
4
+
5
+ if ! command_exists poetry
6
+ then
7
+ echo 'Install poetry'
8
+ pip install --upgrade pip setuptools
9
+ pip install "poetry==1.7.1"
10
+ fi
1
11
  if [ ! -d .venv ]
2
12
  then
3
13
  echo "Init virtual environment"
@@ -1,12 +1,17 @@
1
+ command_exists() {
2
+ command -v "$1" &> /dev/null
3
+ }
4
+
5
+ if ! command_exists poetry
6
+ then
7
+ echo 'Install poetry'
8
+ pip install --upgrade pip setuptools
9
+ pip install "poetry==1.7.1"
10
+ fi
1
11
  if [ ! -d .venv ]
2
12
  then
3
13
  echo "Init virtual environment"
4
14
  python -m venv .venv
5
- source .venv/bin/activate
6
- echo "Upgrade Pip"
7
- pip install -U pip
8
- echo "Install Poetry"
9
- pip install "poetry==1.7.1"
10
15
  fi
11
16
  echo "Activate virtual environment"
12
- source .venv/bin/activate
17
+ source .venv/bin/activate
@@ -1,13 +1,17 @@
1
+ command_exists() {
2
+ command -v "$1" &> /dev/null
3
+ }
4
+
5
+ if ! command_exists poetry
6
+ then
7
+ echo 'Install poetry'
8
+ pip install --upgrade pip setuptools
9
+ pip install "poetry==1.7.1"
10
+ fi
1
11
  if [ ! -d .venv ]
2
12
  then
3
13
  echo "Init virtual environment"
4
14
  python -m venv .venv
5
- source .venv/bin/activate
6
- echo "Upgrade Pip"
7
- pip install -U pip
8
- echo "Install Poetry"
9
- pip install "poetry==1.7.1"
10
15
  fi
11
16
  echo "Activate virtual environment"
12
17
  source .venv/bin/activate
13
-
@@ -1,12 +1,17 @@
1
+ command_exists() {
2
+ command -v "$1" &> /dev/null
3
+ }
4
+
5
+ if ! command_exists poetry
6
+ then
7
+ echo 'Install poetry'
8
+ pip install --upgrade pip setuptools
9
+ pip install "poetry==1.7.1"
10
+ fi
1
11
  if [ ! -d .venv ]
2
12
  then
3
13
  echo "Init virtual environment"
4
14
  python -m venv .venv
5
- source .venv/bin/activate
6
- echo "Upgrade Pip"
7
- pip install -U pip
8
- echo "Install Poetry"
9
- pip install "poetry==1.7.1"
10
15
  fi
11
16
  echo "Activate virtual environment"
12
- source .venv/bin/activate
17
+ source .venv/bin/activate
@@ -5,21 +5,25 @@ log_progress() {
5
5
  }
6
6
 
7
7
 
8
+ command_exists() {
9
+ command -v "$1" &> /dev/null
10
+ }
11
+
12
+
8
13
  init() {
9
14
  export PROJECT_DIR=$(pwd)
10
15
  log_progress "Setting project directory to ${PROJECT_DIR}"
11
-
12
- _IS_EMPTY_VENV=0
16
+ if ! command_exists poetry
17
+ then
18
+ log_progress 'Install poetry'
19
+ pip install --upgrade pip setuptools
20
+ pip install "poetry==1.7.1"
21
+ fi
13
22
  if [ ! -d "${PROJECT_DIR}/.venv" ]
14
23
  then
15
24
  log_progress 'Creating virtual environment'
16
25
  python -m venv "${PROJECT_DIR}/.venv"
17
- source "${PROJECT_DIR}/.venv/bin/activate"
18
- pip install --upgrade pip
19
- pip install "poetry==1.7.1"
20
- _IS_EMPTY_VENV=1
21
26
  fi
22
-
23
27
  log_progress 'Activating virtual environment'
24
28
  source "${PROJECT_DIR}/.venv/bin/activate"
25
29
  }
@@ -5,21 +5,25 @@ log_progress() {
5
5
  }
6
6
 
7
7
 
8
+ command_exists() {
9
+ command -v "$1" &> /dev/null
10
+ }
11
+
12
+
8
13
  init() {
9
14
  export PROJECT_DIR=$(pwd)
10
15
  log_progress "Setting project directory to ${PROJECT_DIR}"
11
-
12
- _IS_EMPTY_VENV=0
16
+ if ! command_exists poetry
17
+ then
18
+ log_progress 'Install poetry'
19
+ pip install --upgrade pip setuptools
20
+ pip install "poetry==1.7.1"
21
+ fi
13
22
  if [ ! -d "${PROJECT_DIR}/.venv" ]
14
23
  then
15
24
  log_progress 'Creating virtual environment'
16
25
  python -m venv "${PROJECT_DIR}/.venv"
17
- source "${PROJECT_DIR}/.venv/bin/activate"
18
- pip install --upgrade pip
19
- pip install "poetry==1.7.1"
20
- _IS_EMPTY_VENV=1
21
26
  fi
22
-
23
27
  log_progress 'Activating virtual environment'
24
28
  source "${PROJECT_DIR}/.venv/bin/activate"
25
29
  }
@@ -1,12 +1,17 @@
1
+ command_exists() {
2
+ command -v "$1" &> /dev/null
3
+ }
4
+
5
+ if ! command_exists poetry
6
+ then
7
+ echo 'Install poetry'
8
+ pip install --upgrade pip setuptools
9
+ pip install "poetry==1.7.1"
10
+ fi
1
11
  if [ ! -d .venv ]
2
12
  then
3
13
  echo "Init virtual environment"
4
14
  python -m venv .venv
5
- source .venv/bin/activate
6
- echo "Upgrade Pip"
7
- pip install -U pip
8
- echo "Install Poetry"
9
- pip install "poetry==1.7.1"
10
15
  fi
11
16
  echo "Activate virtual environment"
12
- source .venv/bin/activate
17
+ source .venv/bin/activate
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zrb
3
- Version: 0.7.1
3
+ Version: 0.7.3
4
4
  Summary: A Framework to Enhance Your Workflow
5
5
  Home-page: https://github.com/state-alchemists/zrb
6
6
  License: AGPL-3.0-or-later
@@ -58,10 +58,10 @@ You can install Zrb as a pip package by invoking the following command:
58
58
  pip install zrb
59
59
  ```
60
60
 
61
- Alternatively, you can also use our installation script to install Zrb along with `pyenv`:
61
+ Alternatively, you can also use our installation script to install Zrb along with some prerequisites:
62
62
 
63
63
  ```bash
64
- curl https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh | bash
64
+ source <(curl -s https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)
65
65
  ```
66
66
 
67
67
  Check our [installation guide](https://github.com/state-alchemists/zrb/blob/main/docs/installation.md) for more information about the installation methods, including installation as a docker container.
@@ -13,8 +13,8 @@ zrb/builtin/devtool/gcloud/install.sh,sha256=IWZ44ZS0XCYnPdclC77PBjsa2HDes7NNcQX
13
13
  zrb/builtin/devtool/gvm/download.sh,sha256=nK8mQh3mm3QBIk7tBprBE10CmXDMRBkuz3S_uobLRm4,407
14
14
  zrb/builtin/devtool/gvm/finalize.sh,sha256=ngKNpdA3P7Op3nTlHLMEK0U6k0di9pW_hX3Wd7MQ8AA,518
15
15
  zrb/builtin/devtool/gvm/resource/config.sh,sha256=M_r6XjtoYZjx8rJaT3FIwVl3HUd7lJF5_KqUSEJQeo4,253
16
- zrb/builtin/devtool/helix/install-language-server.sh,sha256=pSCjnnmjojLAPScWsAqzcEIjqEXikF8ZRwZuCyRYjOM,881
17
- zrb/builtin/devtool/helix/install.sh,sha256=RGn3f-cPOf_6YED9EqGxvdm2e10wW8ELjDAqOzE6Bak,1520
16
+ zrb/builtin/devtool/helix/install-language-server.sh,sha256=ZkV_ARwhTnLjjbAhJe8Pvp1hyRYVn176DYwg7ObkQ1w,1040
17
+ zrb/builtin/devtool/helix/install.sh,sha256=9LIsQaZ_Rdto0TC-vEUB3qFEu_70hEiUG0Le0EuKPKA,1355
18
18
  zrb/builtin/devtool/helix/resource/config.toml,sha256=zEeA-oiVbCGs6dQNZAbeFfMJ3giClOkuhgJ6Pcel2ww,282
19
19
  zrb/builtin/devtool/helix/resource/themes/gruvbox_transparent.toml,sha256=Kz6AhxXKVHrP5mpFI99uPFyfUOvB_0x2fapj0tUkIaA,56
20
20
  zrb/builtin/devtool/helm/install.sh,sha256=IFls6qIgaP6AaGVVyhPcY24eUl30yRdvwdP0DdmfLgY,224
@@ -35,8 +35,8 @@ zrb/builtin/devtool/terraform/install.sh,sha256=HILxhcfvFPBhjqp4vk2bf9yoMC0nN7Hf
35
35
  zrb/builtin/devtool/terraform/resource/config.sh,sha256=Ded5pE1u4ByzfI64mtJcxIfCCqpz6N0AmnJHRetYwME,84
36
36
  zrb/builtin/devtool/tmux/install.sh,sha256=-H-VIipUKLJJGk55Ml0c642G60Iq1DtXj8EQUA0AzNk,1209
37
37
  zrb/builtin/devtool/tmux/resource/config.sh,sha256=wQCb4Q-mNkxIPOcvpN84X9RUWkGY16u3Vd-pOhVidgg,416
38
- zrb/builtin/devtool/zsh/install.sh,sha256=TgQLrqxw_3FPzjupF4BD_WcxjkCx8Zn2HiHp4_ylGB4,1696
39
- zrb/builtin/devtool/zsh/resource/config.sh,sha256=SRkcXvVT3tdfS1UDT0-dSj2PKXPLohhyakY6tUEQPjc,4764
38
+ zrb/builtin/devtool/zsh/install.sh,sha256=O6LnYuNzRAi-gC856Hb1kwqv57JljCRCIVJFuCroC5c,1680
39
+ zrb/builtin/devtool/zsh/resource/config.sh,sha256=2ZEmmiu5KS-FSMlj48IDPh5dhx5fnbzri86CtzI5Np0,5068
40
40
  zrb/builtin/env.py,sha256=LwSLSn4nM-r9IGgrQA6uyIbnf2hEC5KagAvW3UZ_ZSY,1134
41
41
  zrb/builtin/eval.py,sha256=_y18fe28INT9ZA5OWHxAu8Jw3E0nm5fCv51UVFfkb9w,746
42
42
  zrb/builtin/explain.py,sha256=akQfTCgFTiWutAAC6VMZFrjlyDVQ90IWFPDdM_IgUpw,5353
@@ -47,7 +47,7 @@ zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_m
47
47
  zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/_checker.py,sha256=yJV7gzYWsiIg8x6g7-75BdWWGKGE-PutKa28jfUEyA4,353
49
49
  zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/_common.py,sha256=VnWNaCMoig_a8aWTnKh_SUGO907a4bbpgjyvr56c0-Q,1428
50
- zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/cmd/app-activate-venv.sh,sha256=6_UHQ6Z61-Cv_vz2KdB0sVrvazYMqHKOdM-bM601qJI,145
50
+ zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/cmd/app-activate-venv.sh,sha256=DWgQyDPqIhvTKIwQKRr1OxqzUmuOP5m1IkNbM3eKhSQ,334
51
51
  zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/cmd/app-start.sh,sha256=GvDm7mSiARKLvqxeqqddlq_OIfuC3kwGCF7EvnTf0SA,15
52
52
  zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/cmd/pulumi-destroy.sh,sha256=Yc-jb01oostiRMtrsTNWJXn_Fee5iDfv16L4DaoklEA,29
53
53
  zrb/builtin/generator/app_generator/template/base/_automate/generate_snake_zrb_meta_template_name/template/_automate/snake_zrb_app_name/cmd/pulumi-init-stack.sh,sha256=sXITZkR26khcNAu3LnPnWlZFnA9sHx5CTwTy9lWkAS8,126
@@ -121,7 +121,7 @@ zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/_env_file.py
121
121
  zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/_get_start_microservices.py,sha256=pAL0KGlSUDqYbd2O1_m1WUINr8WKHfLmeqh42cY9tsA,3938
122
122
  zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/_helper.py,sha256=tMxNSDyFMes_IkSY6mx1HONT6QTMTTYmxQrnjwWDbMo,2631
123
123
  zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/_input.py,sha256=3a696jNiVQ1wBHJJZMvwZUv5IsKwoZE6_kN4RPlkSps,1892
124
- zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/cmd/activate-venv.sh,sha256=9FKljZ1xrnEDZrXAfs41yJtinOFektuQ_zro3ehhgSE,268
124
+ zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/cmd/activate-venv.sh,sha256=DWgQyDPqIhvTKIwQKRr1OxqzUmuOP5m1IkNbM3eKhSQ,334
125
125
  zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/cmd/app-build-frontend.sh,sha256=uyZ6qYBGwTr811TI-qnBFzc-hSV9AIO3fsdHUyO6yic,155
126
126
  zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/cmd/app-load-test.sh,sha256=D2CCKCLMBq1weTqi6qQED8NX0H24mE5si88SzbZ6WrM,377
127
127
  zrb/builtin/generator/fastapp/template/_automate/snake_zrb_app_name/cmd/app-prepare-backend.sh,sha256=dCb2q2Z_mDk5OYSjmCx-RyFR9Xq0F3-3WZH5psohddw,48
@@ -1014,7 +1014,7 @@ zrb/builtin/generator/fastapp_module/template/src/kebab-zrb-app-name/test/snake_
1014
1014
  zrb/builtin/generator/pip_package/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1015
1015
  zrb/builtin/generator/pip_package/add.py,sha256=cjXYfEIC08YqaU985bA_ocozmAy2vGRlnLhcEvSzOD0,3122
1016
1016
  zrb/builtin/generator/pip_package/template/_automate/snake_zrb_package_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1017
- zrb/builtin/generator/pip_package/template/_automate/snake_zrb_package_name/cmd/activate-venv.sh,sha256=M-lp4ehzd5_QFjOSb5YL9M-6SPgbQcutK7UFcNhKQOg,270
1017
+ zrb/builtin/generator/pip_package/template/_automate/snake_zrb_package_name/cmd/activate-venv.sh,sha256=DWgQyDPqIhvTKIwQKRr1OxqzUmuOP5m1IkNbM3eKhSQ,334
1018
1018
  zrb/builtin/generator/pip_package/template/_automate/snake_zrb_package_name/cmd/build.sh,sha256=BdrlubJq1b9kjtB06IIBxy615NUCh98x-eD3e9JFeAY,86
1019
1019
  zrb/builtin/generator/pip_package/template/_automate/snake_zrb_package_name/cmd/install-symlink.sh,sha256=DntlTyRlfRyxier2byya2dUqW33T2g61yhZLKELVri8,37
1020
1020
  zrb/builtin/generator/pip_package/template/_automate/snake_zrb_package_name/cmd/prepare-venv.sh,sha256=rXg-BvwoWK2xgbZvl01xHko6TZkSkb-yc_LiW8iF2n4,38
@@ -1032,12 +1032,12 @@ zrb/builtin/generator/plugin/template/.github/workflows/hello.yml,sha256=8l8OzR9
1032
1032
  zrb/builtin/generator/plugin/template/.gitignore,sha256=WpYzefd7KJBZ8Ww1c2EvMwNciEkEFG_rSFlsYM7Svz8,32
1033
1033
  zrb/builtin/generator/plugin/template/.python-version,sha256=rGeoqWHOE1NzOu73didX8_OyjR9O8b-XNp87WjKbO0s,7
1034
1034
  zrb/builtin/generator/plugin/template/README.md,sha256=1JsJPjLpPo22Qy1SW3CiDIDbOnzDKD21vQRBcxZnAw8,2051
1035
- zrb/builtin/generator/plugin/template/_cmd/activate-venv.sh,sha256=9FKljZ1xrnEDZrXAfs41yJtinOFektuQ_zro3ehhgSE,268
1035
+ zrb/builtin/generator/plugin/template/_cmd/activate-venv.sh,sha256=DWgQyDPqIhvTKIwQKRr1OxqzUmuOP5m1IkNbM3eKhSQ,334
1036
1036
  zrb/builtin/generator/plugin/template/_cmd/build.sh,sha256=BdrlubJq1b9kjtB06IIBxy615NUCh98x-eD3e9JFeAY,86
1037
1037
  zrb/builtin/generator/plugin/template/_cmd/install-symlink.sh,sha256=DntlTyRlfRyxier2byya2dUqW33T2g61yhZLKELVri8,37
1038
1038
  zrb/builtin/generator/plugin/template/_cmd/prepare-venv.sh,sha256=rXg-BvwoWK2xgbZvl01xHko6TZkSkb-yc_LiW8iF2n4,38
1039
1039
  zrb/builtin/generator/plugin/template/_cmd/publish.sh,sha256=kiF-8ngC9g-2OqDHH3Px5VLuP0q58JVh-EIPMYSLvr4,64
1040
- zrb/builtin/generator/plugin/template/project.sh,sha256=whUZcvqCs2oHsHBBzkfKULdNnYYlAoeryHlsra_sxYo,1471
1040
+ zrb/builtin/generator/plugin/template/project.sh,sha256=G5fJDCxhhB3PCwvD1VP1IiqpP3LgB65RTltL-oVs_WE,1524
1041
1041
  zrb/builtin/generator/plugin/template/pyproject.toml,sha256=xgCPcWXo3rwEvGEzH2nJG-dF9OSRcl7f_4vwnW8Y9U4,764
1042
1042
  zrb/builtin/generator/plugin/template/src/snake_zrb_package_name/__init__.py,sha256=5Twm0lVcddWW1tnRKDkKSkwMeuTxZgZ-GyPcr2MeyZk,130
1043
1043
  zrb/builtin/generator/plugin/template/src/snake_zrb_package_name/__main__.py,sha256=xniLN9eAYflMDjM9LOPlt7FATS1P6aZBkUTGa9cfv6w,121
@@ -1053,7 +1053,7 @@ zrb/builtin/generator/project/template/.gitignore,sha256=9Sy-cmSDOIawqlmervgoO1e
1053
1053
  zrb/builtin/generator/project/template/.python-version,sha256=rGeoqWHOE1NzOu73didX8_OyjR9O8b-XNp87WjKbO0s,7
1054
1054
  zrb/builtin/generator/project/template/README.md,sha256=jNnkBuWhfab1HlcOqi0NKaM1O1NtTjchFrvOtR4KQPg,2026
1055
1055
  zrb/builtin/generator/project/template/_automate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1056
- zrb/builtin/generator/project/template/project.sh,sha256=whUZcvqCs2oHsHBBzkfKULdNnYYlAoeryHlsra_sxYo,1471
1056
+ zrb/builtin/generator/project/template/project.sh,sha256=G5fJDCxhhB3PCwvD1VP1IiqpP3LgB65RTltL-oVs_WE,1524
1057
1057
  zrb/builtin/generator/project/template/pyproject.toml,sha256=OZEOtje1M6wVBoCx4ChcNNPMUWVFHv33CVV_isGdLmI,466
1058
1058
  zrb/builtin/generator/project/template/src/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1059
1059
  zrb/builtin/generator/project/template/template.env,sha256=mO3-iPEHihFbkBSr2VBZ15vyleL1S5MMpUKzGo9qtuw,124
@@ -1076,7 +1076,7 @@ zrb/builtin/generator/simple_python_app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
1076
1076
  zrb/builtin/generator/simple_python_app/add.py,sha256=cP5Y-cdJ7Km7FEQuErf8YW8WOWy-5HnJk6STQWhZefQ,6515
1077
1077
  zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
1078
1078
  zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/_common.py,sha256=VnWNaCMoig_a8aWTnKh_SUGO907a4bbpgjyvr56c0-Q,1428
1079
- zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/cmd/app-activate-venv.sh,sha256=9FKljZ1xrnEDZrXAfs41yJtinOFektuQ_zro3ehhgSE,268
1079
+ zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/cmd/app-activate-venv.sh,sha256=DWgQyDPqIhvTKIwQKRr1OxqzUmuOP5m1IkNbM3eKhSQ,334
1080
1080
  zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/cmd/app-start.sh,sha256=08_G4Uti4cD553cJGgHnPJQxl4C0mUEE3kXz42SeQlc,195
1081
1081
  zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/cmd/pulumi-destroy.sh,sha256=Yc-jb01oostiRMtrsTNWJXn_Fee5iDfv16L4DaoklEA,29
1082
1082
  zrb/builtin/generator/simple_python_app/template/_automate/snake_zrb_app_name/cmd/pulumi-init-stack.sh,sha256=sXITZkR26khcNAu3LnPnWlZFnA9sHx5CTwTy9lWkAS8,126
@@ -1215,8 +1215,8 @@ zrb/task_input/int_input.py,sha256=NVXAToqgdmWVwDqnr3XGuvq_QMNvUiIdD-pW5L4uebk,4
1215
1215
  zrb/task_input/password_input.py,sha256=5sS3XP7WtGow7r7Fid8J9SX0iNCidO6Bg7q40UpZDM0,4029
1216
1216
  zrb/task_input/str_input.py,sha256=D2WBeB-CdmAuOSzT7jTXvie7X3EK_m_Oq8_SVwmNpWA,4042
1217
1217
  zrb/task_input/task_input.py,sha256=L-U5dX-I2U5ci7GU226Q8pXcQe5SpGuOl5viFwlfiM0,2022
1218
- zrb-0.7.1.dist-info/LICENSE,sha256=WfnGCl8G60EYOPAEkuc8C9m9pdXWDe08NsKj3TBbxsM,728
1219
- zrb-0.7.1.dist-info/METADATA,sha256=Q_gHF_lf5wFNsIYr1IKqkPxw35603CnPnOwxjFJWqrY,16484
1220
- zrb-0.7.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
1221
- zrb-0.7.1.dist-info/entry_points.txt,sha256=xTgXc1kBKYhJHEujdaSPHUcJT3-hbyP1mLgwkv-5sSk,40
1222
- zrb-0.7.1.dist-info/RECORD,,
1218
+ zrb-0.7.3.dist-info/LICENSE,sha256=WfnGCl8G60EYOPAEkuc8C9m9pdXWDe08NsKj3TBbxsM,728
1219
+ zrb-0.7.3.dist-info/METADATA,sha256=3ayQrVqOJSRPPRg1nPc7PExALRRbWGMB1-DL0ej1vFE,16501
1220
+ zrb-0.7.3.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
1221
+ zrb-0.7.3.dist-info/entry_points.txt,sha256=xTgXc1kBKYhJHEujdaSPHUcJT3-hbyP1mLgwkv-5sSk,40
1222
+ zrb-0.7.3.dist-info/RECORD,,
File without changes
File without changes