Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 54c7510

Browse files
Add files via upload
1 parent b52ccc9 commit 54c7510

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

valorant-rpc.spec

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['main.py'],
7+
pathex=['D:\\colin\\programming\\VALORANT\\valorant-rpc'],
8+
binaries=[],
9+
datas=[("data/favicon.ico", "data"),("data/blank_config.json", "data")],
10+
hiddenimports=['pystray._win32'],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=['matplotlib','notebook'],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher,
17+
noarchive=False)
18+
pyz = PYZ(a.pure, a.zipped_data,
19+
cipher=block_cipher)
20+
exe = EXE(pyz,
21+
a.scripts,
22+
[],
23+
exclude_binaries=True,
24+
name='valorant-rpc',
25+
debug=False,
26+
bootloader_ignore_signals=False,
27+
strip=False,
28+
upx=False,
29+
console=True , icon='data\\favicon.ico')
30+
coll = COLLECT(exe,
31+
a.binaries,
32+
a.zipfiles,
33+
a.datas,
34+
strip=False,
35+
upx=False,
36+
upx_exclude=[],
37+
name='valorant-rpc')

0 commit comments

Comments
 (0)