I can't seem to get images to work when using cx_Freeze. I tried looking at another answer, found here, but got the error: cannot find file/directory named Documents\images\robot_standing.fw.png
Here is my setup.py file:
from cx_Freeze import setup,Executable
includefiles = ['Documents\images\robotStanding_sprite.fw.png', 'Documents\images\dirt_block.fw.png','Documents\images\grass_block.fw.png','Documents\images\spikes.fw.png','Documents\images\title_image.fw.png']
includes = []
excludes = []
packages = []
setup(
name = 'Robot Game',
version = '0.1',
description = 'null',
options = {'build_exe': {'excludes':excludes,'packages':packages,'include_files':includefiles}},
executables = [Executable('Robot Game.py')]
)
What am I doing wrong?