~stefanfoulis/djangorecipe/subdir

« back to all changes in this revision

Viewing changes to src/djangorecipe/recipe.py

  • Committer: Jeroen Vloothuis
  • Date: 2009-11-24 22:54:17 UTC
  • Revision ID: jeroen@jeroen-laptop-20091124225417-xhncnn5zfyb20y9s
The recipe know enables setuptools to know about the installed `django`

Show diffs side-by-side

added added

removed removed

Lines of Context:
200
200
            # Extract and put the dir in its proper place
201
201
            self.install_release(version, download_dir, tarball, location)
202
202
 
 
203
        self.options['setup'] = location
 
204
        development = zc.recipe.egg.Develop(self.buildout,
 
205
                                            self.options['recipe'],
 
206
                                            self.options)
 
207
        development.install()
 
208
        del self.options['setup']
 
209
 
203
210
        extra_paths = self.get_extra_paths()
204
211
        requirements, ws = self.egg.working_set(['djangorecipe'])
205
212