Metadata-Version: 1.1
Name: robotframework-lint
Version: 0.4
Summary: Static analysis tool for robotframework plain text files
Home-page: https://github.com/boakley/robotframework-lint/
Author: Bryan Oakley
Author-email: bryan.oakley@gmail.com
License: Apache License 2.0
Description: Welcome to Robot Framework Lint
        ===============================
        
        Linter for robot framework plain text files. 
        
        This is a static analysis tool for robot framework plain text files. 
        
        Installation Instructions
        -------------------------
        
        The preferred method of installation is to use pip:
        
            $ pip install robotframework-lint
        
        This will install a package named "rflint".
        
        Running the linter
        ------------------
        
        To run, use the `-m` option to python, to run the rflint module. It takes one or
        more .txt, .tsv or .robot files and will analyze each.
        
        Example:
        
            $ python -m rflint myTestSuite.robot
        
        To see a list of options, use the `--help` option:
        
            $ python -m rflint --help
        
        Example output:
        
            $ python -m rflint myTestSuite.robot
            + myTestSuite.robot
            W: 2, 0: No suite documentation (RequireSuiteDocumentation)
            E: 15, 0: No keyword documentation (RequireKeywordDocumentation)
            
        
        Acknowledgements
        ================
        A huge thank-you to Echo Global Logistics (echo.com) for supporting the development of this package.
        
Keywords: robotframework
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Intended Audience :: Developers
