Metadata-Version: 2.1
Name: cion
Version: 0.3.1
Summary: A data validation library
Home-page: https://github.com/meizuflux/cion
Author: meizuflux
License: MIT
Project-URL: Documentation, https://cionpy.readthedocs.io
Project-URL: Issue Tracker, https://github.com/meizuflux/cion/issues
Project-URL: Source Code, https://github.com/meizuflux/cion
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Provides-Extra: build
Requires-Dist: setuptools ; extra == 'build'
Requires-Dist: wheel ; extra == 'build'
Requires-Dist: build ; extra == 'build'
Requires-Dist: twine ; extra == 'build'
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Requires-Dist: sphinx-copybutton ; extra == 'docs'
Provides-Extra: format
Requires-Dist: black ; extra == 'format'
Requires-Dist: isort ; extra == 'format'
Provides-Extra: lint
Requires-Dist: pyright ; extra == 'lint'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: coverage[toml] ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'

Cion
====

.. image:: https://img.shields.io/github/languages/code-size/meizuflux/cion?style=flat
    :alt: Repo Size
.. image:: https://img.shields.io/tokei/lines/github/meizuflux/cion?style=flat
    :alt: Lines of Code
.. image:: https://img.shields.io/pypi/dm/cion?style=flat
    :alt: PyPI Downloads
.. image:: https://img.shields.io/badge/license-MIT-blue.svg?style=flat
    :alt: License
.. image:: https://img.shields.io/pypi/v/cion.svg?style=flat
    :alt: Version
.. image:: https://img.shields.io/pypi/pyversions/cion?style=flat
    :alt: Python Versions
.. image:: https://img.shields.io/pypi/format/cion?style=flat
    :alt: PyPI Format
.. image:: https://img.shields.io/github/commit-activity/m/meizuflux/cion?style=flat
    :alt: Commit Activity
.. image:: https://readthedocs.org/projects/cionpy/badge/?style=flat
    :alt: Read the Docs
.. image:: https://github.com/meizuflux/cion/workflows/tests/badge.svg
    :alt: Tests
.. image:: https://github.com/meizuflux/cion/workflows/pyright/badge.svg
    :alt: Pyright
.. image:: https://codecov.io/gh/meizuflux/cion/branch/master/graph/badge.svg
    :alt: Code Coverage



Cion is a minimal data validation library. It is unopinionated about how
you get the input and what you do with the output.

Installation
------------

**Requires Python 3.10 or greater**

.. code:: bash

   pip install cion

Usage
-----

View the `examples </examples>`__ directory and the `tests </tests>`__
directory for examples on how to use Cion

Contributing
------------

Pull requests are welcome. For major changes, please open an issue first
to discuss what you would like to change.

Please make sure to update tests as appropriate.

License
-------

`MIT <https://choosealicense.com/licenses/mit/>`__
