Skip to content

Commit

Permalink
fix icons package
Browse files Browse the repository at this point in the history
  • Loading branch information
twolffpiggott committed Oct 13, 2024
1 parent d501ccb commit 8909d2f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]" }]
Expand Down Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion yr_cli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.0.2"
__version__ = "0.0.3"

from importlib import resources

Expand Down
Empty file added yr_cli/icons/__init__.py
Empty file.

0 comments on commit 8909d2f

Please sign in to comment.