diff options
| author | Yuval Adam <_@yuv.al> | 2024-09-23 15:48:31 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2024-09-23 15:48:31 +0200 |
| commit | eeeb52141a8b3551cdcf7a2cee29b8e0d4fc598e (patch) | |
| tree | 9a6fbfef583f6ea74381157b8e46ff6a3859b6d0 | |
Initial files
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | pyproject.toml | 14 |
2 files changed, 18 insertions, 0 deletions
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" |
