first commit
This commit is contained in:
commit
c9516f21d1
|
|
@ -0,0 +1,7 @@
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
lib/
|
||||||
|
include/
|
||||||
|
scripts/
|
||||||
|
share/
|
||||||
|
pyvenv.vfg
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
import sys
|
||||||
|
from iopaint import entry_point
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
sys.exit(entry_point())
|
||||||
|
|
@ -0,0 +1,44 @@
|
||||||
|
# -*- mode: python ; coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['iop.py'],
|
||||||
|
pathex=[],
|
||||||
|
binaries=[],
|
||||||
|
datas=[('D:/py/iop/Lib/site-packages/iopaint/web_app', ' iopaint/web_app')],
|
||||||
|
hiddenimports=['scipy._cythonized_array_utils', 'scipy._cyutility'],
|
||||||
|
hookspath=[],
|
||||||
|
hooksconfig={},
|
||||||
|
runtime_hooks=[],
|
||||||
|
excludes=[],
|
||||||
|
noarchive=False,
|
||||||
|
optimize=0,
|
||||||
|
)
|
||||||
|
pyz = PYZ(a.pure)
|
||||||
|
|
||||||
|
exe = EXE(
|
||||||
|
pyz,
|
||||||
|
a.scripts,
|
||||||
|
[],
|
||||||
|
exclude_binaries=True,
|
||||||
|
name='iop',
|
||||||
|
debug=False,
|
||||||
|
bootloader_ignore_signals=False,
|
||||||
|
strip=False,
|
||||||
|
upx=True,
|
||||||
|
console=True,
|
||||||
|
disable_windowed_traceback=False,
|
||||||
|
argv_emulation=False,
|
||||||
|
target_arch=None,
|
||||||
|
codesign_identity=None,
|
||||||
|
entitlements_file=None,
|
||||||
|
)
|
||||||
|
coll = COLLECT(
|
||||||
|
exe,
|
||||||
|
a.binaries,
|
||||||
|
a.datas,
|
||||||
|
strip=False,
|
||||||
|
upx=True,
|
||||||
|
upx_exclude=[],
|
||||||
|
name='iop',
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,5 @@
|
||||||
|
home = D:\Python311
|
||||||
|
include-system-site-packages = false
|
||||||
|
version = 3.11.9
|
||||||
|
executable = D:\Python311\python.exe
|
||||||
|
command = D:\Python311\python.exe -m venv D:\py\iop
|
||||||
Binary file not shown.
Loading…
Reference in New Issue