Bash command to source a file in a different directory?
First get the directory of the script itself and then use relative paths like that:
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
source "$DIR/../includes/setup.sh"
For more info about finding the correct directory have a look at https://stackoverflow.com/questions/59895