mirror of
https://gitcode.com/JianFeeeee/TrulyMEM-TrueHumanMEM.git
synced 2026-09-20 17:08:18 +00:00
Update: Include spec file and remove icon reference
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -55,7 +55,6 @@ Thumbs.db
|
||||
config.json
|
||||
|
||||
# Build
|
||||
*.spec
|
||||
build/
|
||||
dist/
|
||||
|
||||
|
||||
38
trulymem.spec
Normal file
38
trulymem.spec
Normal file
@ -0,0 +1,38 @@
|
||||
# -*- mode: python ; coding: utf-8 -*-
|
||||
|
||||
|
||||
a = Analysis(
|
||||
['trulymem_entry.py'],
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=[('graph_memory_tui/styles/*.css', 'graph_memory_tui/styles'), ('graph_memory_tui/web/templates/*.html', 'graph_memory_tui/web/templates')],
|
||||
hiddenimports=['textual', 'openai', 'flask', 'neo4j'],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
noarchive=False,
|
||||
optimize=0,
|
||||
)
|
||||
pyz = PYZ(a.pure)
|
||||
|
||||
exe = EXE(
|
||||
pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.datas,
|
||||
[],
|
||||
name='TrulyMEM',
|
||||
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,
|
||||
)
|
||||
Reference in New Issue
Block a user