Skip to content

Commit

Permalink
Builded v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
parinzee committed Jul 27, 2020
1 parent 6534744 commit cf5e8fe
Show file tree
Hide file tree
Showing 21 changed files with 28,494 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
}
]
}
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"python.pythonPath": "c:\\Users\\parin\\.conda\\envs\\Password Generator\\python.exe"
}
33 changes: 33 additions & 0 deletions Password Manager.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# -*- mode: python ; coding: utf-8 -*-

block_cipher = None


a = Analysis(['app.py'],
pathex=['C:\\Users\\parin\\Python Projects\\Python Dev Projects\\Password Generator & SQLite'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='Password Manager',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False , icon='icon_icon.ico')
Binary file added __pycache__/app.cpython-37.pyc
Binary file not shown.
Loading

0 comments on commit cf5e8fe

Please sign in to comment.