Order of the Butterfly
Posts: 348 from 2004/8/31
From: Québec - Canada
Just a little recommendation:
put 'tools' scripts in C: or any other locations, but not in the 'modules' repository LIBS:pythonX.Y/
It's more clean
Even if all python scripts finish with .py, the usage is not the same: some act like libraries (os.py for example), some others act more like tools or end-user program, like xls2html.py.
So it could be good to separate them also.
The benefit of that it's when a new version comes (like between 2.4 and 2.5, moreover with 3.x), you don't have to duplicate 'tools' scripts.
And modules are in general installed using distutils (the famous setup.py).
FYI: my distutils port installs scripts in C: by default when given as tools scripts in setup.py!
[ Edited by Yomgui on 2009/12/4 14:25 ]
And now... next project!