From 982ae5787518cbb65bb7b59db16b4b00bf553f3f Mon Sep 17 00:00:00 2001 From: Rishi Verma Date: Tue, 12 May 2026 15:47:05 -0700 Subject: [PATCH] docs: add PyPI installation instructions to README --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2e840ad..8d0f9e3 100644 --- a/README.md +++ b/README.md @@ -2,20 +2,26 @@ Python client library that abstracts [MAAP API](https://github.com/MAAP-Project/maap-api) calls including CMR querying, algorithm change management, and HySDS job execution. CMR components in this library are largely derived from the [pyCMR](https://github.com/nasa/pyCMR) library. -## Setup +## Installation -Run: +### From PyPI (recommended) ```bash -python setup.py install +pip install maap-py ``` -Or +### For development ```bash pip install -e . ``` +### Legacy + +```bash +python setup.py install +``` + ## Usage Populate your MAAP base url into a `maap.cfg` file, using [maap.cfg](maap.cfg) as a template.