Metadata-Version: 2.4
Name: argovisHelpers
Version: 0.0.37
Summary: Helper functions to consume and parse information from University of Colorado's Argovis API.
Author: Katie Mills
License-Expression: MIT
Project-URL: Homepage, https://argovis.colorado.edu
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: area
Requires-Dist: shapely==1.8.0
Requires-Dist: geopandas
Requires-Dist: xarray
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: gsw
Dynamic: license-file

## Build and release

 - Review metadata in `pyproject.toml`; while determining if code is release worthy, append an rc tag to the semantic version, like `major.minor.patch.rcxx`
 - Build a release (image is built off of `Dockerfile-build-env`):
   ```
   docker container run -v $(pwd):/src argovis/argovis_helpers:build-250927 python -m build
   ```
 - Push to testPypi (notice you'll need a file `pypirc` with appropriate API tokens for the pypi servers): 
   ```
   docker container run -v $(pwd):/src -v $(pwd)/pypirc:/root/.pypirc -it argovis/argovis_helpers:build-250927 twine upload -r testpypi dist/<your new rc>
   ```
 - Test install and try: `python -m pip install -i https://test.pypi.org/simple argovis_helpers`
 - If all is well, rebuild without the rc tag and push to pypi: 
   ```
   docker container run -v $(pwd):/src -v $(pwd)/pypirc:/root/.pypirc -it argovis/argovis_helpers:build-250927 twine upload dist/<your new release>
   ```
 - `git add` your new build artifacts under `/dist`
 - Push to github and mint a release matching the version number in `pyproject.toml`.

  
