summaryrefslogtreecommitdiff
path: root/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin
diff options
context:
space:
mode:
authornasrlol <nsrddyn@gmail.com>2024-11-27 03:29:03 +0100
committernasrlol <nsrddyn@gmail.com>2024-11-27 03:29:03 +0100
commit446f3d4742f88b09c85e83e96f6505cd3f6302c5 (patch)
treea3e16464ee3cc1f158092fd43806b7686a88c0a3 /I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin
parentdf6d2c51b15d55a30b8515de637aa7af490b2d95 (diff)
switched to using qt
Diffstat (limited to 'I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin')
-rw-r--r--I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/Activate.ps1247
-rw-r--r--I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate70
-rw-r--r--I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.csh27
-rw-r--r--I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.fish69
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip38
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3.128
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-android-deploy8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-assistant8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsam8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsamui8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-deploy8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-designer8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-genpyi8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-linguist8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lrelease8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lupdate8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-metaobjectdump8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-project8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qml8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlcachegen8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlformat8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlimportscanner8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmllint8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlls8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmltyperegistrar8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qsb8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qtpy2cpp8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-rcc8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-svgtoqml8
-rwxr-xr-xI2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-uic8
l---------I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python1
l---------I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python31
l---------I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.121
34 files changed, 632 insertions, 0 deletions
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/Activate.ps1 b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/Activate.ps1
new file mode 100644
index 0000000..b49d77b
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/Activate.ps1
@@ -0,0 +1,247 @@
1<#
2.Synopsis
3Activate a Python virtual environment for the current PowerShell session.
4
5.Description
6Pushes the python executable for a virtual environment to the front of the
7$Env:PATH environment variable and sets the prompt to signify that you are
8in a Python virtual environment. Makes use of the command line switches as
9well as the `pyvenv.cfg` file values present in the virtual environment.
10
11.Parameter VenvDir
12Path to the directory that contains the virtual environment to activate. The
13default value for this is the parent of the directory that the Activate.ps1
14script is located within.
15
16.Parameter Prompt
17The prompt prefix to display when this virtual environment is activated. By
18default, this prompt is the name of the virtual environment folder (VenvDir)
19surrounded by parentheses and followed by a single space (ie. '(.venv) ').
20
21.Example
22Activate.ps1
23Activates the Python virtual environment that contains the Activate.ps1 script.
24
25.Example
26Activate.ps1 -Verbose
27Activates the Python virtual environment that contains the Activate.ps1 script,
28and shows extra information about the activation as it executes.
29
30.Example
31Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
32Activates the Python virtual environment located in the specified location.
33
34.Example
35Activate.ps1 -Prompt "MyPython"
36Activates the Python virtual environment that contains the Activate.ps1 script,
37and prefixes the current prompt with the specified string (surrounded in
38parentheses) while the virtual environment is active.
39
40.Notes
41On Windows, it may be required to enable this Activate.ps1 script by setting the
42execution policy for the user. You can do this by issuing the following PowerShell
43command:
44
45PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
46
47For more information on Execution Policies:
48https://go.microsoft.com/fwlink/?LinkID=135170
49
50#>
51Param(
52 [Parameter(Mandatory = $false)]
53 [String]
54 $VenvDir,
55 [Parameter(Mandatory = $false)]
56 [String]
57 $Prompt
58)
59
60<# Function declarations --------------------------------------------------- #>
61
62<#
63.Synopsis
64Remove all shell session elements added by the Activate script, including the
65addition of the virtual environment's Python executable from the beginning of
66the PATH variable.
67
68.Parameter NonDestructive
69If present, do not remove this function from the global namespace for the
70session.
71
72#>
73function global:deactivate ([switch]$NonDestructive) {
74 # Revert to original values
75
76 # The prior prompt:
77 if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
78 Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
79 Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
80 }
81
82 # The prior PYTHONHOME:
83 if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
84 Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
85 Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
86 }
87
88 # The prior PATH:
89 if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
90 Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
91 Remove-Item -Path Env:_OLD_VIRTUAL_PATH
92 }
93
94 # Just remove the VIRTUAL_ENV altogether:
95 if (Test-Path -Path Env:VIRTUAL_ENV) {
96 Remove-Item -Path env:VIRTUAL_ENV
97 }
98
99 # Just remove VIRTUAL_ENV_PROMPT altogether.
100 if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
101 Remove-Item -Path env:VIRTUAL_ENV_PROMPT
102 }
103
104 # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
105 if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
106 Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
107 }
108
109 # Leave deactivate function in the global namespace if requested:
110 if (-not $NonDestructive) {
111 Remove-Item -Path function:deactivate
112 }
113}
114
115<#
116.Description
117Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
118given folder, and returns them in a map.
119
120For each line in the pyvenv.cfg file, if that line can be parsed into exactly
121two strings separated by `=` (with any amount of whitespace surrounding the =)
122then it is considered a `key = value` line. The left hand string is the key,
123the right hand is the value.
124
125If the value starts with a `'` or a `"` then the first and last character is
126stripped from the value before being captured.
127
128.Parameter ConfigDir
129Path to the directory that contains the `pyvenv.cfg` file.
130#>
131function Get-PyVenvConfig(
132 [String]
133 $ConfigDir
134) {
135 Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
136
137 # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
138 $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
139
140 # An empty map will be returned if no config file is found.
141 $pyvenvConfig = @{ }
142
143 if ($pyvenvConfigPath) {
144
145 Write-Verbose "File exists, parse `key = value` lines"
146 $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
147
148 $pyvenvConfigContent | ForEach-Object {
149 $keyval = $PSItem -split "\s*=\s*", 2
150 if ($keyval[0] -and $keyval[1]) {
151 $val = $keyval[1]
152
153 # Remove extraneous quotations around a string value.
154 if ("'""".Contains($val.Substring(0, 1))) {
155 $val = $val.Substring(1, $val.Length - 2)
156 }
157
158 $pyvenvConfig[$keyval[0]] = $val
159 Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
160 }
161 }
162 }
163 return $pyvenvConfig
164}
165
166
167<# Begin Activate script --------------------------------------------------- #>
168
169# Determine the containing directory of this script
170$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
171$VenvExecDir = Get-Item -Path $VenvExecPath
172
173Write-Verbose "Activation script is located in path: '$VenvExecPath'"
174Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
175Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
176
177# Set values required in priority: CmdLine, ConfigFile, Default
178# First, get the location of the virtual environment, it might not be
179# VenvExecDir if specified on the command line.
180if ($VenvDir) {
181 Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
182}
183else {
184 Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
185 $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
186 Write-Verbose "VenvDir=$VenvDir"
187}
188
189# Next, read the `pyvenv.cfg` file to determine any required value such
190# as `prompt`.
191$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
192
193# Next, set the prompt from the command line, or the config file, or
194# just use the name of the virtual environment folder.
195if ($Prompt) {
196 Write-Verbose "Prompt specified as argument, using '$Prompt'"
197}
198else {
199 Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
200 if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
201 Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
202 $Prompt = $pyvenvCfg['prompt'];
203 }
204 else {
205 Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
206 Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
207 $Prompt = Split-Path -Path $venvDir -Leaf
208 }
209}
210
211Write-Verbose "Prompt = '$Prompt'"
212Write-Verbose "VenvDir='$VenvDir'"
213
214# Deactivate any currently active virtual environment, but leave the
215# deactivate function in place.
216deactivate -nondestructive
217
218# Now set the environment variable VIRTUAL_ENV, used by many tools to determine
219# that there is an activated venv.
220$env:VIRTUAL_ENV = $VenvDir
221
222if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
223
224 Write-Verbose "Setting prompt to '$Prompt'"
225
226 # Set the prompt to include the env name
227 # Make sure _OLD_VIRTUAL_PROMPT is global
228 function global:_OLD_VIRTUAL_PROMPT { "" }
229 Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
230 New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
231
232 function global:prompt {
233 Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
234 _OLD_VIRTUAL_PROMPT
235 }
236 $env:VIRTUAL_ENV_PROMPT = $Prompt
237}
238
239# Clear PYTHONHOME
240if (Test-Path -Path Env:PYTHONHOME) {
241 Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
242 Remove-Item -Path Env:PYTHONHOME
243}
244
245# Add the venv to the PATH
246Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
247$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate
new file mode 100644
index 0000000..af7353b
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate
@@ -0,0 +1,70 @@
1# This file must be used with "source bin/activate" *from bash*
2# You cannot run it directly
3
4deactivate () {
5 # reset old environment variables
6 if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
7 PATH="${_OLD_VIRTUAL_PATH:-}"
8 export PATH
9 unset _OLD_VIRTUAL_PATH
10 fi
11 if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
12 PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
13 export PYTHONHOME
14 unset _OLD_VIRTUAL_PYTHONHOME
15 fi
16
17 # Call hash to forget past commands. Without forgetting
18 # past commands the $PATH changes we made may not be respected
19 hash -r 2> /dev/null
20
21 if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
22 PS1="${_OLD_VIRTUAL_PS1:-}"
23 export PS1
24 unset _OLD_VIRTUAL_PS1
25 fi
26
27 unset VIRTUAL_ENV
28 unset VIRTUAL_ENV_PROMPT
29 if [ ! "${1:-}" = "nondestructive" ] ; then
30 # Self destruct!
31 unset -f deactivate
32 fi
33}
34
35# unset irrelevant variables
36deactivate nondestructive
37
38# on Windows, a path can contain colons and backslashes and has to be converted:
39if [ "${OSTYPE:-}" = "cygwin" ] || [ "${OSTYPE:-}" = "msys" ] ; then
40 # transform D:\path\to\venv to /d/path/to/venv on MSYS
41 # and to /cygdrive/d/path/to/venv on Cygwin
42 export VIRTUAL_ENV=$(cygpath "/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv")
43else
44 # use the path as-is
45 export VIRTUAL_ENV="/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv"
46fi
47
48_OLD_VIRTUAL_PATH="$PATH"
49PATH="$VIRTUAL_ENV/bin:$PATH"
50export PATH
51
52# unset PYTHONHOME if set
53# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
54# could use `if (set -u; : $PYTHONHOME) ;` in bash
55if [ -n "${PYTHONHOME:-}" ] ; then
56 _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
57 unset PYTHONHOME
58fi
59
60if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
61 _OLD_VIRTUAL_PS1="${PS1:-}"
62 PS1="(Python_3_12_7venv) ${PS1:-}"
63 export PS1
64 VIRTUAL_ENV_PROMPT="(Python_3_12_7venv) "
65 export VIRTUAL_ENV_PROMPT
66fi
67
68# Call hash to forget past commands. Without forgetting
69# past commands the $PATH changes we made may not be respected
70hash -r 2> /dev/null
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.csh b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.csh
new file mode 100644
index 0000000..a9ddc6b
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.csh
@@ -0,0 +1,27 @@
1# This file must be used with "source bin/activate.csh" *from csh*.
2# You cannot run it directly.
3
4# Created by Davide Di Blasi <davidedb@gmail.com>.
5# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
6
7alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
8
9# Unset irrelevant variables.
10deactivate nondestructive
11
12setenv VIRTUAL_ENV "/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv"
13
14set _OLD_VIRTUAL_PATH="$PATH"
15setenv PATH "$VIRTUAL_ENV/bin:$PATH"
16
17
18set _OLD_VIRTUAL_PROMPT="$prompt"
19
20if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
21 set prompt = "(Python_3_12_7venv) $prompt"
22 setenv VIRTUAL_ENV_PROMPT "(Python_3_12_7venv) "
23endif
24
25alias pydoc python -m pydoc
26
27rehash
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.fish b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.fish
new file mode 100644
index 0000000..d236125
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/activate.fish
@@ -0,0 +1,69 @@
1# This file must be used with "source <venv>/bin/activate.fish" *from fish*
2# (https://fishshell.com/). You cannot run it directly.
3
4function deactivate -d "Exit virtual environment and return to normal shell environment"
5 # reset old environment variables
6 if test -n "$_OLD_VIRTUAL_PATH"
7 set -gx PATH $_OLD_VIRTUAL_PATH
8 set -e _OLD_VIRTUAL_PATH
9 end
10 if test -n "$_OLD_VIRTUAL_PYTHONHOME"
11 set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
12 set -e _OLD_VIRTUAL_PYTHONHOME
13 end
14
15 if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
16 set -e _OLD_FISH_PROMPT_OVERRIDE
17 # prevents error when using nested fish instances (Issue #93858)
18 if functions -q _old_fish_prompt
19 functions -e fish_prompt
20 functions -c _old_fish_prompt fish_prompt
21 functions -e _old_fish_prompt
22 end
23 end
24
25 set -e VIRTUAL_ENV
26 set -e VIRTUAL_ENV_PROMPT
27 if test "$argv[1]" != "nondestructive"
28 # Self-destruct!
29 functions -e deactivate
30 end
31end
32
33# Unset irrelevant variables.
34deactivate nondestructive
35
36set -gx VIRTUAL_ENV "/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv"
37
38set -gx _OLD_VIRTUAL_PATH $PATH
39set -gx PATH "$VIRTUAL_ENV/bin" $PATH
40
41# Unset PYTHONHOME if set.
42if set -q PYTHONHOME
43 set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
44 set -e PYTHONHOME
45end
46
47if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
48 # fish uses a function instead of an env var to generate the prompt.
49
50 # Save the current fish_prompt function as the function _old_fish_prompt.
51 functions -c fish_prompt _old_fish_prompt
52
53 # With the original prompt function renamed, we can override with our own.
54 function fish_prompt
55 # Save the return status of the last command.
56 set -l old_status $status
57
58 # Output the venv prompt; color taken from the blue of the Python logo.
59 printf "%s%s%s" (set_color 4B8BBE) "(Python_3_12_7venv) " (set_color normal)
60
61 # Restore the return status of the previous command.
62 echo "exit $old_status" | .
63 # Output the original/"old" prompt.
64 _old_fish_prompt
65 end
66
67 set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
68 set -gx VIRTUAL_ENV_PROMPT "(Python_3_12_7venv) "
69end
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip
new file mode 100755
index 0000000..474ea8e
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.12
2# -*- coding: utf-8 -*-
3import re
4import sys
5from pip._internal.cli.main import main
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(main())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3 b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3
new file mode 100755
index 0000000..474ea8e
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.12
2# -*- coding: utf-8 -*-
3import re
4import sys
5from pip._internal.cli.main import main
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(main())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3.12 b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3.12
new file mode 100755
index 0000000..474ea8e
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pip3.12
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.12
2# -*- coding: utf-8 -*-
3import re
4import sys
5from pip._internal.cli.main import main
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(main())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-android-deploy b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-android-deploy
new file mode 100755
index 0000000..f8e50d4
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-android-deploy
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import android_deploy
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(android_deploy())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-assistant b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-assistant
new file mode 100755
index 0000000..fe09c91
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-assistant
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import assistant
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(assistant())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsam b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsam
new file mode 100755
index 0000000..5d53c4b
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsam
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import balsam
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(balsam())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsamui b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsamui
new file mode 100755
index 0000000..9fb6dd2
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-balsamui
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import balsamui
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(balsamui())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-deploy b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-deploy
new file mode 100755
index 0000000..f637078
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-deploy
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import deploy
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(deploy())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-designer b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-designer
new file mode 100755
index 0000000..4943138
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-designer
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import designer
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(designer())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-genpyi b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-genpyi
new file mode 100755
index 0000000..dd0f48d
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-genpyi
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import genpyi
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(genpyi())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-linguist b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-linguist
new file mode 100755
index 0000000..8f45af7
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-linguist
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import linguist
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(linguist())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lrelease b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lrelease
new file mode 100755
index 0000000..84d7fe0
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lrelease
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import lrelease
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(lrelease())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lupdate b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lupdate
new file mode 100755
index 0000000..d626c12
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-lupdate
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import lupdate
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(lupdate())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-metaobjectdump b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-metaobjectdump
new file mode 100755
index 0000000..028a49b
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-metaobjectdump
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import metaobjectdump
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(metaobjectdump())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-project b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-project
new file mode 100755
index 0000000..c968575
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-project
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import project
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(project())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qml b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qml
new file mode 100755
index 0000000..664b7e9
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qml
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qml
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qml())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlcachegen b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlcachegen
new file mode 100755
index 0000000..3f812c5
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlcachegen
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qmlcachegen
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qmlcachegen())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlformat b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlformat
new file mode 100755
index 0000000..6b07a1a
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlformat
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qmlformat
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qmlformat())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlimportscanner b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlimportscanner
new file mode 100755
index 0000000..d51c9fb
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlimportscanner
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qmlimportscanner
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qmlimportscanner())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmllint b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmllint
new file mode 100755
index 0000000..6953721
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmllint
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qmllint
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qmllint())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlls b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlls
new file mode 100755
index 0000000..10d0745
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmlls
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qmlls
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qmlls())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmltyperegistrar b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmltyperegistrar
new file mode 100755
index 0000000..0fad18d
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qmltyperegistrar
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qmltyperegistrar
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qmltyperegistrar())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qsb b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qsb
new file mode 100755
index 0000000..81c2d08
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qsb
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qsb
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qsb())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qtpy2cpp b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qtpy2cpp
new file mode 100755
index 0000000..3b516d1
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-qtpy2cpp
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import qtpy2cpp
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(qtpy2cpp())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-rcc b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-rcc
new file mode 100755
index 0000000..a5c43b4
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-rcc
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import rcc
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(rcc())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-svgtoqml b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-svgtoqml
new file mode 100755
index 0000000..b8382d0
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-svgtoqml
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import svgtoqml
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(svgtoqml())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-uic b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-uic
new file mode 100755
index 0000000..0f8f096
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/pyside6-uic
@@ -0,0 +1,8 @@
1#!/home/nasr/SOFTWARE/I2C/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
2# -*- coding: utf-8 -*-
3import re
4import sys
5from PySide6.scripts.pyside_tool import uic
6if __name__ == '__main__':
7 sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8 sys.exit(uic())
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
new file mode 120000
index 0000000..11b9d88
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python
@@ -0,0 +1 @@
python3.12 \ No newline at end of file
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3 b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3
new file mode 120000
index 0000000..11b9d88
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3
@@ -0,0 +1 @@
python3.12 \ No newline at end of file
diff --git a/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.12 b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.12
new file mode 120000
index 0000000..dc92e12
--- /dev/null
+++ b/I2C-CONTROLLER/.qtcreator/Python_3_12_7venv/bin/python3.12
@@ -0,0 +1 @@
/usr/bin/python3.12 \ No newline at end of file