Metadata-Version: 2.1
Name: ciou
Version: 0.1.0
Summary: CLI input and output utils.
Author: Toni Kangas
Project-URL: Homepage, https://github.com/kangasta/ciou
Project-URL: Repository, https://github.com/kangasta/ciou.git
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# CLI input and output utils (ciou)

Utilities for working with inputs and outputs of command-line interfaces.

## Testing

Check and automatically fix formatting with:

```bash
pycodestyle ciou
autopep8 -aaar --in-place ciou
```

Run static analysis with:

```bash
pylint -E --enable=invalid-name,unused-import,useless-object-inheritance ciou
```

Run unit tests with command:

```bash
python3 -m unittest discover -s tst/
```

Get test coverage with commands:

```bash
coverage run --branch --source ciou/ -m unittest discover -s tst/
coverage report -m
```
