Metadata-Version: 2.1
Name: validate_version_code
Version: 1.0.5
Summary: Python package to validate version codes.
Home-page: https://github.com/LucaCappelletti94/validate_version_code
Author: Luca Cappelletti
Author-email: cappelletti.luca94@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# validate_version_code

[![PyPI](https://badge.fury.io/py/validate-version-code.svg)](https://pypi.org/project/validate-version-code/)
[![Downloads](https://pepy.tech/badge/validate-version-code)](https://pepy.tech/project/validate-version-code)
[![License](https://img.shields.io/github/license/LucaCappelletti94/validate_version_code)](https://github.com/LucaCappelletti94/validate_version_code/blob/master/LICENSE)
[![Github Actions](https://github.com/LucaCappelletti94/validate_version_code/actions/workflows/python.yml/badge.svg)](https://github.com/LucaCappelletti94/validate_version_code/actions/)

Python package to validate version codes.

## How do I install this package?

As usual, just download it using pip:

```bash
pip install validate_version_code
```

## Usage Example

Here’s a basic how-to:

```python
from validate_version_code import validate_version_code

valid_version_code = "1.2.3"
invalid_version_code = "beta.3"

assert validate_version_code(valid_version_code)
assert not validate_version_code(invalid_version_code)
```

## License

This package is distributed under the MIT license. This license can be found [here](LICENSE).


