I have a setup.py script, that has entry_points defined like this:
entry_points = {
'console_scripts': [
'gun = gun.sync:main'
]
},
This installs the executable into /usr/bin. Is there any way I can tell entry_points to install it to /usr/sbin instead?