python setup.py configuration to install files in custom directories
问题 I want to create a setup.py which would install my files into custom directories. I have a certain prefix, where I would like to get the following result: /my/prefix/ bin/ script.sh libexec/ one.py two.py ... lib/pythonX.Y/site-packages/ package/... My initial project is following: / script.sh one.py two.py ... setup.py package/... __init__.py ... What would be the best way to achieve that? I would like to be able to install it later with something like: python setup.py install --prefix=/my