diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | README.md | 10 |
2 files changed, 11 insertions, 0 deletions
@@ -1,4 +1,5 @@ __pycache__/ .pytest_cache/ +dist/ poetry.lock @@ -2,6 +2,16 @@ A simple ORM-like utility for operating on local YAML files via Python dataclasses. +## Install + +Package is published on PyPI - https://pypi.org/project/ymlstash/ + +Install from pip or your favorite package manager: + +```bash +$ pip install ymlstash +``` + ## Usage Define a dataclass: |
