Metadata-Version: 2.1
Name: toml-validator
Version: 1.3.0
Summary: Simple TOML file validator using Python.
Home-page: https://github.com/staticdev/toml-validator
License: MIT
Author: Thiago Carvalho D'Ávila
Author-email: thiagocavila@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: click (>=7.0,<8.0)
Requires-Dist: importlib_metadata (>=1.6.0,<2.0.0); python_version < "3.8"
Requires-Dist: tomlkit (>=0.5.9,<0.7.0)
Project-URL: Repository, https://github.com/staticdev/toml-validator
Description-Content-Type: text/markdown

# toml-validator

[![Tests](https://github.com/staticdev/toml-validator/workflows/Tests/badge.svg)](https://github.com/staticdev/toml-validator/actions?workflow=Tests)
[![Codecov](https://codecov.io/gh/staticdev/toml-validator/badge.svg?branch=master&service=github)](https://codecov.io/gh/staticdev/toml-validator)
![PyPi](https://badge.fury.io/py/toml-validator.svg)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)

Simple TOML file validator using Python.

## Quickstart

```sh
pip install toml-validator
toml-validator FILANAME
```

It gives a green message for correct files and red message with errors.

