I can\'t figure out how to make setup.py
add a scrip to the the user\'s /bin
or /usr/bin
or whatever.
E.g., I\'d like to add a
If you're willing to build and install the entire python package, this is how I would go about it:
setup(name='myproject',author='',author_email='',scripts=['bin/myscript.py'])
mkdir bin
bin
directory (and make sure it's executable!)cd
into the directory that contains setup.py again, and install the entire python package by typing python setup.py install