ソースを参照

pyinstaller-Aufrufe verschoben

gc-server3 3 ヶ月 前
コミット
a8d423263d

+ 0 - 0
gcstruct/dist/gchr2.exe → dist/gchr2.exe


+ 0 - 0
gcstruct/dist/gchr2_10.exe → dist/gchr2_10.exe


+ 0 - 0
gcstruct/dist/gcstruct_uebersetzung.exe → dist/gcstruct_uebersetzung.exe


+ 1 - 1
gcstruct/gchr2.bat → gchr2.bat

@@ -1,4 +1,4 @@
 cd /d %~dp0
-call ..\.venv\Scripts\activate.bat
+call .venv\Scripts\activate.bat
 pyinstaller -F --path %~dp0 gchr2.py
 pause

+ 1 - 1
gcstruct/gchr2.py → gchr2.py

@@ -1,6 +1,6 @@
 import os
 
-import gchr
+from gcstruct import gchr
 
 if __name__ == "__main__":
     gchr.gchr_export(os.getcwd())

+ 1 - 1
gcstruct/gchr2.spec → gchr2.spec

@@ -6,7 +6,7 @@ block_cipher = None
 
 a = Analysis(
     ['gchr2.py'],
-    pathex=['C:\\Projekte\\Python\\gcstruct\\'],
+    pathex=['C:\\Projekte\\Python\\'],
     binaries=[],
     datas=[],
     hiddenimports=[],

+ 1 - 1
gcstruct/gcstruct_uebersetzung.bat → gcstruct_uebersetzung.bat

@@ -1,4 +1,4 @@
 cd /d %~dp0
-call ..\.venv\Scripts\activate.bat
+call .venv\Scripts\activate.bat
 pyinstaller -F --path %~dp0 gcstruct_uebersetzung.py
 pause

+ 1 - 3
gcstruct/gcstruct_uebersetzung.py → gcstruct_uebersetzung.py

@@ -1,8 +1,6 @@
-import sys
 from pathlib import Path
 
-sys.path.insert(0, "C:\\Projekte\\Python\\gcstruct")
-from gcstruct import GCStruct  # noqa:E402
+from gcstruct.gcstruct import GCStruct
 
 
 def get_base_and_import_dir(base_dir):

+ 44 - 44
gcstruct/gcstruct_uebersetzung.spec → gcstruct_uebersetzung.spec

@@ -1,44 +1,44 @@
-# -*- mode: python ; coding: utf-8 -*-
-
-
-block_cipher = None
-
-
-a = Analysis(
-    ['gcstruct_uebersetzung.py'],
-    pathex=['C:\\Projekte\\Python\\gcstruct\\'],
-    binaries=[],
-    datas=[],
-    hiddenimports=[],
-    hookspath=[],
-    hooksconfig={},
-    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='gcstruct_uebersetzung',
-    debug=False,
-    bootloader_ignore_signals=False,
-    strip=False,
-    upx=True,
-    upx_exclude=[],
-    runtime_tmpdir=None,
-    console=True,
-    disable_windowed_traceback=False,
-    argv_emulation=False,
-    target_arch=None,
-    codesign_identity=None,
-    entitlements_file=None,
-)
+# -*- mode: python ; coding: utf-8 -*-
+
+
+block_cipher = None
+
+
+a = Analysis(
+    ['gcstruct_uebersetzung.py'],
+    pathex=['C:\\Projekte\\Python\\gcstruct\\'],
+    binaries=[],
+    datas=[],
+    hiddenimports=[],
+    hookspath=[],
+    hooksconfig={},
+    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='gcstruct_uebersetzung',
+    debug=False,
+    bootloader_ignore_signals=False,
+    strip=False,
+    upx=True,
+    upx_exclude=[],
+    runtime_tmpdir=None,
+    console=True,
+    disable_windowed_traceback=False,
+    argv_emulation=False,
+    target_arch=None,
+    codesign_identity=None,
+    entitlements_file=None,
+)