Metadata-Version: 1.0
Name: pyinspector
Version: 1.3
Summary: A module to easely run quality pipeline for python project
Home-page: https://github.com/omauger/pyinspector
Author: Ophélie Mauger
Author-email: UNKNOWN
License: MIT
Description: # pyquality
        
        Pipeline to run quality tools on python projet :
        * unittest
        * coverage report
        * flake8
        * pylint
        * radon for maintainability report
        * xenon for cyclomatic complexity
        
        ## Install
        
        ```
        pip install pyinspector
        ```
        
        ## Usage
        ```
        pyinspector <project_path> <options_not_required>
        ```
        <project_path> need to be explicit path. Don't use '.'
        
        You can use options :
        * `--no-report`: to not print results and not coverage report
        * `--no-unittest`: to not run unittest
        * `--no-flake8`: to not run flake8
        * `--no-pylint`: to not run pylint
        * `--no-mi`: to not inspect maintainability
        * `--no-cc`: to not inspect cyclomatic complexity
        
        
Platform: UNKNOWN
