Hi all,

I am having a develop egg in my buildout setup and its setup.py specifies a dependency in the install_requires field.

When bin/buildout command is run, the dependencies are not installed. But when I mention the dependency in the buildout.cfg file, it does gets installed and becomes available to the environment. Alternatively, running bin/buildout setup <path to setup.py> file installs the dependency correctly and it works. What could be the issue here?

Here is my buildout.cfg
<snip>
[buildout]
extensions = mr.developer
auto-checkout = <project name>
develop = src/wsb
eggs = <project name>
parts = django

[sources]
<project name> = hg <repository URL>

[django]
recipe=djangorecipe
projectegg = <project name>
extra-paths = src/
settings = settings

</snip>

and the setup.py in the project
<snip>
#! /usr/bin/env python

from distutils.core import setup

setup(name='project name',
      version='version number',
      description='description text',
      author='guruprasad',
      author_email='[email protected]',
      url='project URL',
      install_requires=['recaptcha-client']
      )

</snip>

Thanks in advance.

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

Reply via email to