-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathshowdownai.spec
34 lines (34 loc) · 1.07 KB
/
showdownai.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*- mode: python -*-
a = Analysis(['server/showdownbot.py'],
pathex=['/home/vasu/Work/pokemon_ai'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='showdownbot',
debug=False,
strip=None,
upx=True,
console=True )
dict_tree = Tree("data/", prefix="data")
static_tree = Tree("server/static/", prefix="static")
template_tree = Tree("server/templates/", prefix="templates")
selenium_tree = Tree("venv/lib/python2.7/site-packages/selenium/", prefix="selenium")
teams_tree = Tree("empty_teams/", prefix="teams")
lib_tree = Tree("lib/", prefix="lib")
coll = COLLECT(exe,
a.binaries,
dict_tree,
static_tree,
template_tree,
selenium_tree,
lib_tree,
teams_tree,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='showdownai')