bcpkgfox 0.16.8__tar.gz → 0.16.9__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.8
3
+ Version: 0.16.9
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -35,25 +35,25 @@ class cli:
35
35
  venv_group.add_argument(
36
36
  '-v', '--venv',
37
37
  action='store_true',
38
- help="Creates a new virtual environment with all dependencies installed\n"
38
+ help="Creates a new virtual environment with all dependencies installed\n\n"
39
39
  )
40
40
 
41
41
  venv_group.add_argument(
42
42
  '-vc', '--venv-clean',
43
43
  action='store_true',
44
- help="Creates a virtual environment without dependencies\n"
44
+ help="Creates a virtual environment without dependencies\n\n"
45
45
  )
46
46
 
47
47
  venv_group.add_argument(
48
48
  '-rv', '--recreate-venv',
49
49
  action='store_true',
50
- help="Recreates venv (without dependencies)\n"
50
+ help="Recreates venv (without dependencies)\n\n"
51
51
  )
52
52
 
53
53
  venv_group.add_argument(
54
54
  '-dv', '--delete-venv',
55
55
  action='store_true',
56
- help="Deletes venv\n"
56
+ help="Deletes venv\n\n"
57
57
  )
58
58
 
59
59
 
@@ -61,52 +61,52 @@ class cli:
61
61
  exe_group.add_argument(
62
62
  '-e', '--exe',
63
63
  action='store_true',
64
- help="Creates a .exe of the file\n"
64
+ help="Creates a .exe of the file\n\n"
65
65
  )
66
66
 
67
67
  exe_group.add_argument(
68
68
  '-nc', '--no-console',
69
69
  action='store_true',
70
- help="The exe don't open the console when started\n"
70
+ help="The exe don't open the console when started\n\n"
71
71
  )
72
72
 
73
73
  exe_group.add_argument(
74
74
  '-z', '--zip',
75
75
  action='store_true',
76
- help="Make a zip of the 'dist' and rename it to the name of the file\n"
76
+ help="Make a zip of the 'dist' and rename it to the name of the file\n\n"
77
77
  )
78
78
 
79
79
  exe_group.add_argument(
80
80
  '-ic', '--icon',
81
81
  type=str,
82
82
  nargs='+',
83
- help="Change the exe icon (put .ico path)\n"
83
+ help="Change the exe icon (put .ico path)\n\n"
84
84
  )
85
85
 
86
86
  exe_group.add_argument(
87
87
  '-ad', '--add-data',
88
88
  type=str,
89
89
  nargs='+',
90
- help="Add data(s) to .exe (similar of pyinstaller)\n"
90
+ help="Add data(s) to .exe (similar of pyinstaller)\n\n"
91
91
  )
92
92
 
93
93
  file_group = self.parser.add_argument_group(f'{self.visuals.ORANGE}{self.visuals.bold} File Options{self.visuals.RESET}')
94
94
  file_group.add_argument(
95
95
  '-fi', '--find-imports',
96
96
  action='store_true',
97
- help="Finds all imports necessary for the lib to work\n"
97
+ help="Finds all imports necessary for the lib to work\n\n"
98
98
  )
99
99
 
100
100
  file_group.add_argument(
101
101
  '-vi', '--verify-imports',
102
102
  action='store_true',
103
- help="Shows imports that were not installed automatically\n"
103
+ help="Shows imports that were not installed automatically\n\n"
104
104
  )
105
105
 
106
106
  file_group.add_argument(
107
107
  '-i', '--install-imports',
108
108
  action='store_true',
109
- help="Installs all imports necessary for the lib to work\n"
109
+ help="Installs all imports necessary for the lib to work\n\n"
110
110
  )
111
111
 
112
112
  self.parser.add_argument(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcpkgfox
3
- Version: 0.16.8
3
+ Version: 0.16.9
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.8",
5
+ version="0.16.9",
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
File without changes