Metadata-Version: 1.1
Name: pandas-validation
Version: 0.1.0
Summary: A Python package for validating data with pandas
Home-page: https://github.com/jmenglund/pandas-validation
Author: Markus Englund
Author-email: jan.markus.englund@gmail.com
License: MIT
Description: pandas-validation
        =================
        
        pandas-validation is a small Python library for validating data
        with the Python package `pandas <http://pandas.pydata.org>`_.
        
        Source repository: `<https://github.com/jmenglund/pandas-validation>`_
        
        Documentation at `<http://pandas-validation.readthedocs.org>`_
        
        .. image:: https://api.travis-ci.org/jmenglund/pandas-validation.svg?branch=master
            :target: https://travis-ci.org/jmenglund/pandas-validation
            :alt: Documentation Status
        
        .. image:: https://codecov.io/github/jmenglund/pandas-validation/coverage.svg?branch=master
            :target: https://codecov.io/github/jmenglund/pandas-validation?branch=master
            :alt: Code coverage
        
        .. image:: https://readthedocs.org/projects/pandas-validation/badge/?version=latest
            :target: http://pandas-validation.readthedocs.org/en/latest/?badge=latest
            :alt: Documentation status
        
        
        
        Installation
        ------------
        
        The project is hosted at https://github.com/jmenglund/pandas-validation and 
        can be installed using git:
        
        .. code-block:: console
        
            $ git clone https://github.com/jmenglund/pandas-validation.git
            $ cd pandas-validation
            $ python setup.py install
        
        
        Running tests
        -------------
        
        Run tests with pytest:
        
        .. code-block:: console
        
            $ cd pandas-validation
            $ py.test -v --cov-report term-missing --cov pandasvalidation.py
        
        
        Build the documentation
        -----------------------
        
        The documentation can be built with sphinx:
        
        .. code-block:: console
        
            $ cd pandas-validation
            $ sphinx-build -b html ./docs/source ./docs/_build/html
        
Keywords: pandas,validation
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
