Metadata-Version: 2.1
Name: invisibleroads
Version: 0.3.1
Summary: Simple framework for extensible command line scripts
Home-page: https://github.com/invisibleroads/invisibleroads
Author: Roy Hyunjin Han
Author-email: rhh@crosscompute.com
License: UNKNOWN
Keywords: invisibleroads
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: stevedore

# InvisibleRoads

Here is a simple framework for extensible command line scripts.

```bash
pip install -U invisibleroads

cd ~/Documents
git clone https://github.com/invisibleroads/invisibleroads
cd invisibleroads/tests/examples/xyz
pip install -e .

xyz
xyz a
xyz b
xyz x
xyz x a
xyz x b
xyz y
xyz y a
xyz y b

xyz a z
xyz b z
xyz x a z
xyz x b z
xyz y a z
xyz y b z
```

# 0.3
- Support nested subparsers

# 0.2
- Drop support for Python 2
- Show available commands
- Show script errors

# 0.1
- Prepare for public release

