Metadata-Version: 2.3
Name: nmdc-geoloc-tools
Version: 0.2.1
Summary: 
Author: Brian Holderman
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: requests (>=2.0.0)
Description-Content-Type: text/markdown

# GeoEngine geolocation tool
Library to request information about a location regarding the elevation, soil type, and landuse from web services host at Oak Ridge National Laboratory.

See https://modis.ornl.gov/rst/ui/#!/products/get_products for more information

## Development

### Prerequisites

- [Poetry](https://python-poetry.org/docs/#installation)
- [Poetry dynamic versioning plugin](https://github.com/mtkennerly/poetry-dynamic-versioning?tab=readme-ov-file#installation)

### Setup

Install dependencies with Poetry. This will also create a new virtual environment if necessary.

```bash
poetry install
```

### Testing

Run the test suite using the Makefile target `test`.

```bash
make test
```

### Linting

Run the linter using the Makefile target `lint`.

```bash
make lint
```

Some issues can be automatically fixed by running the Makefile target `lint-fix`.

```bash
make lint-fix
```

### Releasing

To release a new version to PyPI, create a new GitHub Release with a tag in the format `vX.Y.Z`. This will trigger a GitHub Action that will publish the new version to PyPI.

