Hello,<br><br>I&#39;m trying to use buildout with develop eggs, but it seems that they cannot be installed.<br><br>Here is the scenario :<br><br>1)<br>I create a simple project in /home/user/project<br>mkdir mymodule<br>touch mymodule/__init__.py<br>
echo -e &quot;from setuptools import setup\nPACKAGE = &#39;mymodule&#39;\nVERSION = &#39;0.1&#39;\nsetup(name=PACKAGE, version=VERSION, packages=[&#39;mymodule&#39;] )&quot; &gt; setup.py<br><br>2) I use the following buildout.cfg<br>
[buildout]<br>develop = /home/af79141/project<br>parts = eggs<br><br>[eggs]<br>recipe = zc.recipe.egg<br>eggs = mymodule<br><br>3) I copy bootstrap.py in the directory (<a href="http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py">http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py</a>)<br>
<br>4) python bootstrap.py<br><br>5) bin/buildout<br><br>I end up with the following content:<br>bin<br>bootstrap.py<br>buildout.cfg<br>develop-eggs<br>eggs<br>parts<br><br>No lib/python/site-packages are created !<br>But there is a file mymodule.egg-link in develop-eggs with the following content:<br>
/home/users/project<br>.<br>What am I doing wrong ?<br>I was expecting a created file like lib/python/site-packages/mymodule ?<br><br>Thanks in advance,<br><br>