Metadata-Version: 2.1
Name: hsds-data-tool
Version: 0.1a0
Summary: Data validator and transformer for Human Services Data Specification.
Home-page: https://github.com/chekos/hsds-data-tool
Author: Sergio Sanchez
License: Apache License, Version 2.0
Project-URL: Issues, https://github.com/chekos/hsds-data-tool/issues
Project-URL: CI, https://github.com/chekos/hsds-data-tool/actions
Project-URL: Changelog, https://github.com/chekos/hsds-data-tool/releases
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: test
Provides-Extra: dev
License-File: LICENSE

# hsds-data-tool

[![PyPI](https://img.shields.io/pypi/v/hsds-data-tool.svg)](https://pypi.org/project/hsds-data-tool/)
[![Changelog](https://img.shields.io/github/v/release/chekos/hsds-data-tool?include_prereleases&label=changelog)](https://github.com/chekos/hsds-data-tool/releases)
[![Tests](https://github.com/chekos/hsds-data-tool/workflows/Test/badge.svg)](https://github.com/chekos/hsds-data-tool/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/chekos/hsds-data-tool/blob/master/LICENSE)

Data validator and transformer for Human Services Data Standard.

## Installation

Install this tool using `pip`:

    $ pip install hsds-data-tool

## Usage

Usage instructions go here.

## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:

    cd hsds-data-tool
    python -m venv venv
    source venv/bin/activate

Or if you are using `pipenv`:

    pipenv shell

Now install the dependencies and test dependencies:

    pip install -e '.[test]'

To run the tests:

    pytest


