Metadata-Version: 2.1
Name: brundle
Version: 1.0.0
Summary: Run various linters if they are installed.
Author-email: Janus Heide <janusheide@gmail.com>
Project-URL: Homepage, https://github.com/janusheide/brundle
Project-URL: Repository, https://github.com/janusheide/brundle
Project-URL: Changelog, https://github.com/janusheide/brundle/blob/main/NEWS.rst
Keywords: maintenance,utility
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: brundle[test] ; extra == 'dev'
Requires-Dist: bouillon ==2.2.0 ; extra == 'dev'
Requires-Dist: build ==1.2.2 ; extra == 'dev'
Requires-Dist: uppd ==0.3.0 ; extra == 'dev'
Requires-Dist: twine ==5.1.1 ; extra == 'dev'
Provides-Extra: linters
Requires-Dist: isort ==5.13.2 ; extra == 'linters'
Requires-Dist: licensecheck ==2024.3 ; extra == 'linters'
Requires-Dist: mypy ==1.11.2 ; extra == 'linters'
Requires-Dist: ruff ==0.6.8 ; extra == 'linters'
Provides-Extra: test
Requires-Dist: brundle[linters] ; extra == 'test'
Requires-Dist: pytest ==8.3.3 ; extra == 'test'
Requires-Dist: pytest-cov ==5.0.0 ; extra == 'test'

..  Copyright (c) 2024, Janus Heide.
..  All rights reserved.
..
.. Distributed under the "BSD 3-Clause License", see LICENSE.rst.

Brundle
=======

.. image:: https://github.com/janusheide/brundle/actions/workflows/unittests.yml/badge.svg
    :target: https://github.com/janusheide/brundle/actions/workflows/unittests.yml
    :alt: Unit tests

.. image:: https://img.shields.io/pypi/pyversions/brundle
   :alt: PyPI - Python Version

.. image:: https://img.shields.io/librariesio/github/janusheide/brundle
   :alt: Libraries.io dependency status for GitHub repo


Runs various linters if they are installed.

Getting Started
---------------

Install and run::

    pip install brundle
    brundle --help

Or if you want to install all linters that brundle will run::

    pip install brundle[linters]
    brundle --help

Usage
-----

Run::

    brundle

Runs all the following programs in order, and return 1 if any of them result in an error.

    1. licensecheck
    2. isort
    3. ruff
    4. mypy


Development
-----------

Setup, run tests and release::

    pip install .[dev]
    brundle
    pytest
    bouillon release 1.2.3
