mustapha wrote:
> You have to say to buildout that you want to use myapp in the django
> part. Add myapp to the eggs of the [django] part or add it to the
> buildout's eggs option because you are including ${buildout:eggs} in the
> [django]'s eggs. So do:
> 
> [buidlout]
> eggs =
>     psycopg2
>     myapp
> 
> develop = src/myapp
> 
> or:
> 
> [django]
> eggs =
>     ${buildout:eggs}
>     myapp

Thanks mustapha that solved the problem.

-stj

_______________________________________________
Distutils-SIG maillist  -  [email protected]
http://mail.python.org/mailman/listinfo/distutils-sig

Reply via email to