Metadata-Version: 1.1
Name: yt.recipe.relativeworkaround
Version: 0.0.2
Summary: A buildout recipe to add in shell commands
Home-page: http://github.com/toumorokoshi/yt.recipe.shell
Author: Yusuke Tsutsumi
Author-email: yusuke@yusuketsutsumi.com
License: UNKNOWN
Description: # yt.recipe.relativeworkaround
        
        This is a buildout recipe that will fix an annoying with buildout: when the
        relative-paths options is turned on, it will still use the absolute path when referencing
        the buildout root:
        
            # buildout.cfg
            [buildout]
            relative-paths = true
        
            [scripts]
            recipe = z3c.recipe.scripts:scripts
            eggs =
                fabric
            interpreter = python
        
        
        The result is absloute paths still added in various places:
        
            $ cat parts/scripts/site.py | grep `pwd`
                '/Users/yusuket/stash/TOOL/shipit'
        
        
        Run this recipe at the end of your build, and it will do it's best to
        correct them to the proper values.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
