Metadata-Version: 2.4
Name: meteo_si
Version: 0.2
Summary: meteo_si: Meteo SI is a collection of meteorological formulas
Author-email: Maximilian Maahn <maximilian.maahn@colorado.edu>
Maintainer-email: Maximilian Maahn <maximilian.maahn@colorado.edu>
License-Expression: MIT
Project-URL: Homepage, https://github.com/maahn/meteo_si
Project-URL: Documentation, https://meteo-si.readthedocs.io/en/latest/
Project-URL: Repository, https://github.com/maahn/meteo_si
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Provides-Extra: lint
Requires-Dist: flake8; extra == "lint"
Dynamic: license-file

## meteo_si

[![Tests](https://github.com/maahn/meteo_si/actions/workflows/tests.yml/badge.svg)](https://github.com/maahn/meteo_si/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/meteo-si/badge/?version=latest)](https://meteo-si.readthedocs.io/en/latest/?badge=latest)
[![PyPI](https://img.shields.io/pypi/v/meteo_si.svg)](https://pypi.org/project/meteo_si/)

Meteo SI is a collection of functions for atmospheric sciences following the
SI-convention (unless stated otherwise). See
https://meteo-si.readthedocs.io/en/latest/ for documentation.

### Installation

```
pip install meteo_si
```

### Development

```
pip install -e .[test,lint]
make test     # run the test suite
make flake8   # run the linter
```

Supported Python versions: 3.10–3.14.
