As part of the installation process I would like to copy a config file to user's home directory, i.e. ~/.foo.conf
What is the usual approach to do this with setup.py? Should I write code in setup.py to copy the file after the setup(), or is there some built-in mechanism in place for this kind of task?
Update
I ended up modifying the script to check if ~/.foo.conf exists on start up.
If not, create a default conf. I also found this post which was useful.