distutils package_dir newbie

2005-08-03 Thread peter
Hello all, I've have following problem the layout of my program is the following: setup.py project_dev/__init__.py project_dev/someModule.py now I want to make a source-installer so python setup.py install will give the following directory stucture: site-packages/project_user/__init__.py

Re: distutils package_dir newbie

2005-08-03 Thread Robert Kern
peter wrote: Hello all, I've have following problem the layout of my program is the following: setup.py project_dev/__init__.py project_dev/someModule.py now I want to make a source-installer so python setup.py install will give the following directory stucture:

Re: distutils package_dir newbie

2005-08-03 Thread peter
thx for answering is such short notice. I recieve the following error when I use your setup: error: package directory 'project_user' does not exist (the complete error is added at the end of this document) I'm using python 2.3.5 (build by activeState) based on python 2.3.5 Do you have an idea

Re: distutils package_dir newbie

2005-08-03 Thread Robert Kern
peter wrote: thx for answering is such short notice. I recieve the following error when I use your setup: error: package directory 'project_user' does not exist (the complete error is added at the end of this document) I'm using python 2.3.5 (build by activeState) based on python 2.3.5

Re: distutils package_dir newbie

2005-08-03 Thread peter
hello Robert I've tried your setup.py file and now it seems to work... I've made the following fault in the setup: I did use: setup(..., packages = ['project_dev'], ...) instead of the correct one: setup(..., packages = ['project_user'], ...) you have been a great help Peter --