You can use files other than .fabricrc by doing the following. (However, you cannot use lists)
config.txt
dummy = hogehoge
fabfile.py
from fabric.main import load_settings
env.update(load_settings('config.txt'))
print env.dummy
Recommended Posts