You need to use a specfile. Have a look at the documentation.
pyinstaller creates those file automatically. You just need to edit it. Have a look at the example from the docs. To add a README file you just need to add a tuple (source, destination) to 'datas':
a = Analysis(...
datas=[ ('src/README.txt', '.') ],
...
)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…