How to Include Another bash Script in your Own bash Script
In the Include Files in Bash article, it gives some good examples (i.e. one reason to do this is for data, so it doesn't clutter up your script -- not stated, but I would use it this way).
Basically, it amounts to the following:
#!/usr/bin/env bash
source other-file …