Metadata-Version: 2.1
Name: rpmlint-codeclimate
Version: 0.1.0
Summary: Codeclimate parser for rpmlint
Author-email: Duncan Macleod <macleoddm@cardiff.ac.uk>
License: MIT
Project-URL: Homepage, https://gitlab.com/duncanmmacleod/rpmlint-codeclimate/
Project-URL: Bug Tracker, https://gitlab.com/duncanmmacleod/rpmlint-codeclimate/-/issues/
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: rpmlint<2.3.0,>=2.0.0; python_version < "3.8" and extra == "test"
Requires-Dist: rpmlint>=2.0.0; python_version >= "3.8" and extra == "test"

# rpmlint-codeclimate

This project provides a Python-based parser for rpmlint to write
CodeClimate-format reports, mainly to assist using rpmlint in
Gitlab CI/CD pipelines.

## Install

```shell
python -m pip install rpmlint-codeclimate
```

## Usage

Just pipe the output of `rpmlint --info` to the `rpmlint_codeclimate` module.

```shell
rpmlint --info *.rpm | python -m rpmlint_codeclimate
```
