bcpkgfox 0.16.7__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.
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/PKG-INFO +1 -1
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/cli.py +13 -13
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/setup.py +1 -1
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/README.md +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.7 → bcpkgfox-0.16.9}/setup.cfg +0 -0
|
@@ -23,7 +23,7 @@ class cli:
|
|
|
23
23
|
|
|
24
24
|
self.parser = argparse.ArgumentParser(
|
|
25
25
|
add_help=False,
|
|
26
|
-
description=f"{self.visuals.bold}{self.visuals.DK_ORANGE} Library
|
|
26
|
+
description=f"{self.visuals.bold}{self.visuals.DK_ORANGE} BCFOX Library \n You can use the arguments in any order you want.\n\n Most flags are independent, you can use it alone or combine them in a single command interacting with each other when applicable.{self.visuals.RESET}",
|
|
27
27
|
formatter_class=argparse.RawTextHelpFormatter
|
|
28
28
|
)
|
|
29
29
|
|
|
@@ -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(
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|