diff --git a/README.md b/README.md index 929b467..29df110 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Yr Weather CLI -[![Supported Python Versions](https://img.shields.io/pypi/pyversions/yr-cli/0.0.2)](https://pypi.org/project/yr-cli/) [![PyPI version](https://badge.fury.io/py/yr-cli.svg)](https://badge.fury.io/py/yr-cli) +[![Supported Python Versions](https://img.shields.io/pypi/pyversions/yr-cli/0.0.3)](https://pypi.org/project/yr-cli/) [![PyPI version](https://badge.fury.io/py/yr-cli.svg)](https://badge.fury.io/py/yr-cli) [yr.no](https://www.yr.no/nb) has a great weather service but poor search functionality, especially for South African place names. `yr` is a simple CLI that combines [OpenStreetMaps search engine](https://nominatim.openstreetmap.org/ui/search.html) with [yr's location forecast](https://api.met.no/weatherapi/locationforecast/2.0/documentation) to provide precise weather forecasts from place names in the command line. diff --git a/pyproject.toml b/pyproject.toml index e7af00e..3d55a3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "yr-cli" -version = "0.0.2" +version = "0.0.3" description = "A rich CLI for location-based weather forecasts" readme = "README.md" authors = [{ name = "Tim Wolff-Piggott", email = "twolffpiggott@gmail.com" }] @@ -48,7 +48,7 @@ Homepage = "https://github.com/twolffpiggott/yr-cli" yr = "yr_cli.cli:app" [tool.setuptools] -packages = ["yr_cli", "yr_cli.locationforecast"] +packages = ["yr_cli", "yr_cli.locationforecast", "yr_cli.icons"] [tool.setuptools.package-data] "yr_cli.icons" = ["*.png"] diff --git a/yr_cli/__init__.py b/yr_cli/__init__.py index fdebec3..c013b7e 100644 --- a/yr_cli/__init__.py +++ b/yr_cli/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.2" +__version__ = "0.0.3" from importlib import resources diff --git a/yr_cli/icons/__init__.py b/yr_cli/icons/__init__.py new file mode 100644 index 0000000..e69de29