Metadata-Version: 2.1
Name: blue_heron
Version: 0.0.0
Summary: UNKNOWN
Home-page: https://github.com/oclyke-dev/blue-heron
License: MIT
Keywords: autodesk,eagle,brd,sch,lbr
Platform: UNKNOWN
Classifier: Topic :: Utilities
Description-Content-Type: text/markdown
License-File: LICENSE.md

# blue-heron
python package for interacting with AutoDesk Eagle files

this is a pre-release version and the api is subject to change.

## installation


## development

### installation
to install for development:
```
git clone ${REPO_URL} ${PATH_TO_ROOT}
pip install -e ${PATH_TO_ROOT}
```

### tests

tox is reccomended

#### tox

install tox
```pip install tox```

run tox from the root directory
```tox```

#### pytest (not reccomended)
make sure pytest is installed

run pytest from the root directory
```pytest```

## packaging

make sure the PyPA's build package is installed
```python3 -m pip install --upgrade build```

run build from the root dir
```python3 -m build```


