Metadata-Version: 1.1
Name: lcov_cobertura
Version: 1.2
Summary: LCOV to Cobertura XML converter
Home-page: http://eriwen.github.com/lcov-to-cobertura-xml/
Author: Eric Wendelin
Author-email: me@eriwen.com
License: Apache License, Version 2.0
Download-URL: https://github.com/eriwen/lcov-to-cobertura-xml/downloads
Description: 
            Converts code coverage report files in lcov format to Cobertura's XML
            report format so that CI servers like Jenkins can aggregate results and
            determine build stability etc.
        
            >>> from lcov_cobertura import LcovCobertura
            >>> LCOV_INPUT = 'your lcov input'
            >>> converter = LcovCobertura(LCOV_INPUT)
            >>> cobertura_xml = converter.convert()
            >>> print cobertura_xml
            
Keywords: lcov cobertura
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Quality Assurance
Provides: lcov_cobertura
