first commit

This commit is contained in:
Envy_PC 2025-07-04 08:28:39 +09:00
commit c9516f21d1
5 changed files with 61 additions and 0 deletions

7
.gitignore vendored Normal file
View File

@ -0,0 +1,7 @@
build/
dist/
lib/
include/
scripts/
share/
pyvenv.vfg

5
iop.py Normal file
View File

@ -0,0 +1,5 @@
import sys
from iopaint import entry_point
if __name__ == "__main__":
sys.exit(entry_point())

44
iop.spec Normal file
View File

@ -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',
)

5
pyvenv.cfg Normal file
View File

@ -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

BIN
requirements.txt Normal file

Binary file not shown.