Metadata-Version: 1.1
Name: stylize
Version: 0.0.4
Summary: A tool for quickly formatting and checkstyling C/C++ and Python code
Home-page: https://github.com/justbuchanan/stylize
Author: Justin Buchanan
Author-email: justbuchanan@gmail.com
License: Apache License, Version 2.0
Description: # Stylize
        ![](https://img.shields.io/pypi/v/stylize.svg) ![](https://img.shields.io/pypi/status/stylize.svg)
        
        Stylize is a command line interface for quickly reformatting a C++ or Python codebase.  It's a wrapper for [clang-format](http://clang.llvm.org/docs/ClangFormat.html) and [yapf](https://github.com/google/yapf).
        
        
        ## Install
        
        ~~~{.sh}
        pip3 install stylize
        ~~~
        
        
        ## Usage
        
        ~~~{.sh}
        # reformat all C++/Python files in the current directory recursively
        stylize
        
        # reformat only files that differ from origin/master
        stylize --diffbase=origin/master
        
        # run in checkstyle mode - no files are changed and a nonzero return code
        # indicates that some files are out of accordance with the style configurations.
        stylize --check
        ~~~
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Quality Assurance
