Metadata-Version: 2.1
Name: vercheck
Version: 0.1.0
Summary: Check the package version gainst a target version
Author-email: Christian Ledermann <christian.ledermann@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/cleder/vercheck/
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Typing :: Typed
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: complexity
Requires-Dist: lizard ; extra == 'complexity'
Requires-Dist: radon ; extra == 'complexity'
Provides-Extra: dev
Requires-Dist: pre-commit ; extra == 'dev'
Requires-Dist: vercheck[complexity] ; extra == 'dev'
Requires-Dist: vercheck[linting] ; extra == 'dev'
Requires-Dist: vercheck[tests] ; extra == 'dev'
Requires-Dist: vercheck[typing] ; extra == 'dev'
Provides-Extra: linting
Requires-Dist: black ; extra == 'linting'
Requires-Dist: flake8 ; extra == 'linting'
Requires-Dist: flake8-cognitive-complexity ; extra == 'linting'
Requires-Dist: flake8-comments ; extra == 'linting'
Requires-Dist: flake8-complex-f-strings ; extra == 'linting'
Requires-Dist: flake8-continuation ; extra == 'linting'
Requires-Dist: flake8-docstrings ; extra == 'linting'
Requires-Dist: flake8-encodings ; extra == 'linting'
Requires-Dist: flake8-expression-complexity ; extra == 'linting'
Requires-Dist: flake8-function-order ; extra == 'linting'
Requires-Dist: flake8-pep3101 ; extra == 'linting'
Requires-Dist: flake8-super ; extra == 'linting'
Requires-Dist: flake8-use-fstring ; extra == 'linting'
Requires-Dist: ruff ; extra == 'linting'
Requires-Dist: yamllint ; extra == 'linting'
Provides-Extra: tests
Requires-Dist: pytest ; extra == 'tests'
Requires-Dist: pytest-cov ; extra == 'tests'
Provides-Extra: typing
Requires-Dist: mypy ; extra == 'typing'

# Vercheck

[![PyPI](https://img.shields.io/pypi/v/vercheck.svg)][pypi status]
[![Status](https://img.shields.io/pypi/status/vercheck.svg)][pypi status]
[![Python Version](https://img.shields.io/pypi/pyversions/vercheck)][pypi status]
[![License](https://img.shields.io/pypi/l/vercheck)][license]

[![Read the documentation at https://vercheck.readthedocs.io/](https://img.shields.io/readthedocs/vercheck/latest.svg?label=Read%20the%20Docs)][read the docs]
[![Tests](https://github.com/cleder/vercheck/workflows/Tests/badge.svg)][tests]
[![Codecov](https://codecov.io/gh/cleder/vercheck/branch/main/graph/badge.svg)][codecov]

[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)][pre-commit]
[![Black](https://img.shields.io/badge/code%20style-black-000000.svg)][black]

[pypi status]: https://pypi.org/project/vercheck/
[read the docs]: https://vercheck.readthedocs.io/
[tests]: https://github.com/cleder/vercheck/actions?workflow=Tests
[codecov]: https://app.codecov.io/gh/cleder/vercheck
[pre-commit]: https://github.com/pre-commit/pre-commit
[black]: https://github.com/psf/black

## Features

- TODO

## Requirements

- TODO

## Installation

You can install _Vercheck_ via [pip] from [PyPI]:

```console
$ pip install vercheck
```

## Usage

Please see the [Command-line Reference] for details.

## Contributing

Contributions are very welcome.
To learn more, see the [Contributor Guide].

## License

Distributed under the terms of the [MIT license][license],
_Vercheck_ is free and open source software.

## Issues

If you encounter any problems,
please [file an issue] along with a detailed description.

## Credits

This project was generated from [@cjolowicz]'s [Hypermodern Python Cookiecutter] template.

[@cjolowicz]: https://github.com/cjolowicz
[pypi]: https://pypi.org/
[hypermodern python cookiecutter]: https://github.com/cjolowicz/cookiecutter-hypermodern-python
[file an issue]: https://github.com/cleder/vercheck/issues
[pip]: https://pip.pypa.io/

<!-- github-only -->

[license]: https://github.com/cleder/vercheck/blob/main/LICENSE
[contributor guide]: https://github.com/cleder/vercheck/blob/main/CONTRIBUTING.md
[command-line reference]: https://vercheck.readthedocs.io/en/latest/usage.html
