From f84b098f51aae82344116b410e0a5028c86dd3ab Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Mon, 21 Oct 2024 10:58:30 -0400 Subject: [PATCH] Add weather package --- pyproject.toml | 1 + weather/weather_cli.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c488bd0..7faee0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,7 @@ version = "0.1.0" description = "" authors = ["Chris "] license = "MIT" +packages = [ { include = "weather"} ] [tool.poetry.dependencies] python = "^3.10" diff --git a/weather/weather_cli.py b/weather/weather_cli.py index 9b27f69..8eea146 100644 --- a/weather/weather_cli.py +++ b/weather/weather_cli.py @@ -6,7 +6,7 @@ # This is the program that will actually run when you # run `weather` in Terminal. # -# You don't need to do anything with thie file. +# You don't need to do anything with this file. from argparse import ArgumentParser from weather.weather import print_weather