Metadata-Version: 2.1
Name: conan-check-updates
Version: 0.1.0
Summary: Check for updates of your conanfile.txt/conanfile.py requirements.
Author-email: Lukas Berbuer <lukas.berbuer@gmail.com>
License: MIT License
Project-URL: Source, https://github.com/lukasberbuer/conan-check-updates
Project-URL: Issues, https://github.com/lukasberbuer/conan-check-updates/issues
Keywords: conan,update,upgrade,package,requirements,node-check-updates
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: C
Classifier: Programming Language :: C++
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: tools
Provides-Extra: dev

# conan-check-updates

[![CI](https://github.com/lukasberbuer/conan-check-updates/workflows/CI/badge.svg)](https://github.com/lukasberbuer/conan-check-updates/actions)
[![PyPI](https://img.shields.io/pypi/v/conan-check-updates)](https://pypi.org/project/conan-check-updates)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/conan-check-updates)](https://pypi.org/project/conan-check-updates)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

Check for updates of your `conanfile.txt` / `conanfile.py` requirements.

![Screenshot](https://github.com/lukasberbuer/conan-check-updates/blob/master/docs/screenshot.png)

## Installation

Install the latest version from PyPI:

```shell
$ pip install -U conan-check-updates
```

## Usage

```
usage: conan-check-updates [--cwd CWD] [--target {major,minor,patch}] [--timeout TIMEOUT] [-V] [-h] [filter ...]

Check for updates of your conanfile.txt/conanfile.py requirements.

positional arguments:
  filter                Include only package names matching any of the given strings or patterns. Wildcards (*, ?) are
                        allowed. Patterns can be inverted with a prepended !, e.g. !boost*. (default: None)

options:
  --cwd CWD             Path to a folder containing a recipe or to a recipe file directly (conanfile.py or conanfile.txt).
                        (default: .)
  --target {major,minor,patch}
                        Limit upgrade level: major, minor or patch. (default: major)
  --timeout TIMEOUT     Timeout for `conan info|search` in seconds. (default: 30)
  -V, --version         Show the version and exit.
  -h, --help            Show this message and exit.
```

## Contributing

Contributions are happily accepted.
Just [create an issue](https://github.com/lukasberbuer/conan-check-updates/issues/new) or make a pull-request.

### Development setup

```shell
Clone repository
$ git clone https://github.com/lukasberbuer/conan-check-updates.git
$ cd conan-check-updates

Install package and development tools
$ pip install -e .[dev]

Install the git hook scripts
$ pre-commit install

Run checks & tests with tox
$ tox
```
