Metadata-Version: 1.1
Name: c2c.versions
Version: 0.4
Summary: Command to tests program version
Home-page: http://github.com/sbrunner/c2c.versions
Author: Stéphane Brunner
Author-email: stephane.brunner@camptocamp.com
License: BSD
Description: c2c.versions
        ============
        
        Command to tests program version.
        
        Example of use:
        
        Config file:
        
        code:: yaml
        
            default_cmd: dpkg -l {package} | grep ^ii | awk '{{print $3}}'
        
            main:
                python: # use python version
                    cmd: /usr/bin/python --version 2>&1 | awk '{{print $2}}'
                    version: 2.7 
                python3: # use package verion
                    version: 3.3
        
        Command:
        
        ``c2c.versions config.yaml main``
        
        This example tests that we have at least the version 2.7 of python 2
        and the version 3.3 of python 3.
        
Keywords: check package programme version
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: System :: Installation/Setup
