Add weather package

This commit is contained in:
Chris Proctor 2024-10-21 10:58:30 -04:00
parent 91c7684cc2
commit f84b098f51
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@ version = "0.1.0"
description = "" description = ""
authors = ["Chris <chris@chrisproctor.net>"] authors = ["Chris <chris@chrisproctor.net>"]
license = "MIT" license = "MIT"
packages = [ { include = "weather"} ]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.10" python = "^3.10"

View File

@ -6,7 +6,7 @@
# This is the program that will actually run when you # This is the program that will actually run when you
# run `weather` in Terminal. # 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 argparse import ArgumentParser
from weather.weather import print_weather from weather.weather import print_weather