bcpkgfox 0.16.5b1__tar.gz → 0.16.5b3__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcpkgfox
3
- Version: 0.16.5b1
3
+ Version: 0.16.5b3
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -65,7 +65,7 @@ class cli:
65
65
  exe_group.add_argument(
66
66
  '-nc', '--no-console',
67
67
  action='store_true',
68
- help="The exe no open the console when started"
68
+ help="The exe don't open the console when started"
69
69
  )
70
70
 
71
71
  exe_group.add_argument(
@@ -139,7 +139,6 @@ class cli:
139
139
  if not os.path.exists(os.path.join(self.current_dir, self.args.icon[0])):
140
140
  raise ValueError(f"The path '{self.args.icon[0]}' not exists")
141
141
 
142
-
143
142
  # Venv
144
143
  if self.args.venv:
145
144
  self.venv_manager.main()
@@ -160,9 +159,8 @@ class cli:
160
159
  elif self.args.exe:
161
160
  self.exec_gen.main()
162
161
 
163
- if self.args.zip:
164
- self.exec_gen.zip_file()
165
-
162
+ if self.args.zip:
163
+ self.exec_gen.zip_file()
166
164
 
167
165
  # LOG - Verify imports
168
166
  if self.args.find_imports \
@@ -172,7 +170,7 @@ class cli:
172
170
  or self.args.exe:
173
171
  if self.args.verify_imports:
174
172
  self.find_imports.verify_imports()
175
-
173
+
176
174
  self.clean_terminal()
177
175
 
178
176
  def clean_terminal(self):
@@ -256,7 +254,7 @@ class cli:
256
254
  if s % 10 == 0: n += 1
257
255
  if n == len(self.retro_computer_style): n = 0
258
256
 
259
- sys.stdout.write(f"\r \033[F\r\033[K\033[E {self.cli.animate_rgb_text(f" {self.cli.visuals.bold} {self.retro_computer_style[n]} {self.text} {self.retro_computer_style[n]} {self.cli.RESET}")} \033[0J\n\033[F")
257
+ sys.stdout.write(f"\r \033[F\r\033[K\033[E {self.cli.visuals.animate_rgb_text(f" {self.cli.visuals.bold} {self.retro_computer_style[n]} {self.text} {self.retro_computer_style[n]} {self.cli.visuals.RESET}")} \033[0J\n\033[F")
260
258
  sys.stdout.flush()
261
259
  s += 1
262
260
 
@@ -375,7 +373,6 @@ class cli:
375
373
  zip_log = False
376
374
 
377
375
  try:
378
-
379
376
  name_dir = self.current_dir.split("\\")
380
377
  print(name_dir)
381
378
 
@@ -396,6 +393,9 @@ class cli:
396
393
  os.remove(new_path)
397
394
  zip_log = True
398
395
 
396
+ except Exception as e:
397
+ print(e)
398
+
399
399
  finally:
400
400
  animation.finish()
401
401
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcpkgfox
3
- Version: 0.16.5b1
3
+ Version: 0.16.5b3
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="bcpkgfox",
5
- version="0.16.5b1",
5
+ version="0.16.5b3",
6
6
  author="Guilherme Neri",
7
7
  author_email="guilherme.neri@bcfox.com.br",
8
8
  description="Biblioteca BCFOX",
File without changes
File without changes