19 lines
348 B
TOML
19 lines
348 B
TOML
[tool.poetry]
|
|
name = "weather-cli"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["dtomlinson <dtomlinson@panaetius.co.uk>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
requests = "^2.22"
|
|
click = "^7.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^3.0"
|
|
pudb = "^2019.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|