From eeeb52141a8b3551cdcf7a2cee29b8e0d4fc598e Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 23 Sep 2024 15:48:31 +0200 Subject: Initial files --- README.md | 4 ++++ pyproject.toml | 14 ++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 README.md create mode 100644 pyproject.toml diff --git a/README.md b/README.md new file mode 100644 index 0000000..765155a --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# Weather and CO2 Monitoring + +A more modern and unified version of the original [weather station](https://github.com/yuvadm/weather-station/) as described in the original [blog post](https://yuv.al/blog/home-weather-station/) + diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2049ef7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "weather-co2-station" +version = "0.1.0" +description = "" +authors = ["Yuval Adam <_@yuv.al>"] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" -- cgit v1.3.1