summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--pyproject.toml14
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"