Metadata-Version: 2.1
Name: nwp-dl-utils
Version: 0.0.1
Summary: Tools to download (relevant parts of) various NWP products.
Project-URL: Homepage, https://github.com/sintef/nwp-dl-utils
Project-URL: Bug Tracker, https://github.com/sintef/nwp-dl-utils/issues
Author-email: Volker Hoffmann <volker.hoffmann@sintef.no>
License-File: LICENSE.txt
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pyresample
Requires-Dist: xarray
Description-Content-Type: text/markdown

# NWP Downloading Utilities

## Development

Setting up a development space

```sh
conda create --name nwpdl-dev python=3.9
conda activate nwpdl-dev
conda install pyresample numpy xarray pandas
conda deactivate nwpdl-dev
conda activate nwpdl-dev
```

## Build and Distribute

Setup environment

```sh
conda create --name nwpdl-build python=3.9
conda activate nwpdl-build
pip install --upgrade pip
pip install --upgrade build
pip install --upgrade twine
```

Build and upload

```sh
python -m build
python -m twine upload --repository testpypi dist/* 
```
