Skip to content

Commit a1795e7

Browse files
authored
Merge pull request #3 from JISaldana/feature/test-func
feature/Executable
2 parents 23243f3 + 133d5ee commit a1795e7

5 files changed

Lines changed: 80 additions & 5 deletions

File tree

.idea/workspace.xml

Lines changed: 41 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

BasicSupportMenu.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import os
22
from colorama import Fore, Back, Style, init
33

4-
#Change branch number 2
54
# Inicializa colorama para que funcione en Windows
65
init(autoreset=True)
76

BasicSupportMenu.spec

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
a = Analysis(
5+
['BasicSupportMenu.py'],
6+
pathex=[],
7+
binaries=[],
8+
datas=[],
9+
hiddenimports=[],
10+
hookspath=[],
11+
hooksconfig={},
12+
runtime_hooks=[],
13+
excludes=[],
14+
noarchive=False,
15+
optimize=0,
16+
)
17+
pyz = PYZ(a.pure)
18+
19+
exe = EXE(
20+
pyz,
21+
a.scripts,
22+
a.binaries,
23+
a.datas,
24+
[],
25+
name='BasicSupportMenu',
26+
debug=False,
27+
bootloader_ignore_signals=False,
28+
strip=False,
29+
upx=True,
30+
upx_exclude=[],
31+
runtime_tmpdir=None,
32+
console=True,
33+
disable_windowed_traceback=False,
34+
argv_emulation=False,
35+
target_arch=None,
36+
codesign_identity=None,
37+
entitlements_file=None,
38+
icon=['icon.ico'],
39+
)

dist/BasicSupportMenu.exe

7.07 MB
Binary file not shown.

icon.ico

145 KB
Binary file not shown.

0 commit comments

Comments
 (0)