Metadata-Version: 1.0
Name: pb.recipes.pydev
Version: 0.4.1
Summary: Generates an Eclipse Pydev configuration file with path dependencies for an egg
Home-page: http://svn.plone.org/svn/collective/pb.recipes.pydev/
Author: Tiberiu Ichim - Pixelblaster SRL
Author-email: tibi@pixelblaster.ro
License: BSD
Description: pb.recipes.pydev
        ================
        
        A recipe that writes a .pydevproject file in a specified location. This file will
        contain paths of all the eggs of the current zope instance + any other paths
        specified in the buildout.cfg file. After running the buildout you'll have to
        close and reopen the Eclipse project, to regenerate the project's module indexes.
        
        Almost all options of this recipe for the buildout.cfg are optional. The only
        one required is the `eggs` option. A sample zope3 instance buildout, with the
        pydev recipe could be something like this:
        
        [buildout]
        develop = .
        parts = instance pydev
        
        [sample-app]
        recipe = zc.zope3recipes:app
        eggs = something [app, third_party]
        
        [pydev]
        recipe = pb.recipes.pydev
        eggs = ${sample-app:eggs}
        
        Read the README.txt doctest inside the source code for further info about the
        options.
        
        Change History
        **************
        
        Version 0.4.1
        ===========
        - Cleanup package to follow package standards
        
        Version 0.4
        ===========
        - no longer crash when dealing with .pydevproject files with no external source folder node.
        
        Version 0.3
        ===========
        
        - Fix issue with paths that appear for two times in the generated file
        - No longer pass the .pydevproject path to buildout as it gets deleted
Keywords: buildout recipe PyDev eclipse
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Framework :: Buildout
Classifier: Framework :: Zope3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
