# HG changeset patch # User drewp@bigasterisk.com # Date 1719522032 25200 # Node ID f340f7a559dee1dfc2b4d0629a76a0a1858492b2 # Parent 3c86035c0061493f747904d177cda07d1eeda80f dep versions diff -r 3c86035c0061 -r f340f7a559de .hgignore --- a/.hgignore Thu Jun 27 13:28:53 2024 -0700 +++ b/.hgignore Thu Jun 27 14:00:32 2024 -0700 @@ -1,1 +1,3 @@ .pdm-python +/.esphome/ +/secrets.yaml diff -r 3c86035c0061 -r f340f7a559de pdm.lock --- a/pdm.lock Thu Jun 27 13:28:53 2024 -0700 +++ b/pdm.lock Thu Jun 27 14:00:32 2024 -0700 @@ -5,7 +5,7 @@ groups = ["default"] strategy = ["cross_platform", "inherit_metadata"] lock_version = "4.4.1" -content_hash = "sha256:847b6dcbd41e2347fe1a87b66089ffe1ccb7e14e5d584b1342879ebcde8640b9" +content_hash = "sha256:2df5e58f28350918f13b3435ed8afbeb240c62f22df6ca144421c5e5f11efb75" [[package]] name = "aioesphomeapi" diff -r 3c86035c0061 -r f340f7a559de pyproject.toml --- a/pyproject.toml Thu Jun 27 13:28:53 2024 -0700 +++ b/pyproject.toml Thu Jun 27 14:00:32 2024 -0700 @@ -1,21 +1,21 @@ [project] -name = "" -version = "" +name = "micro" +version = "0.0.0" description = "" authors = [ {name = "Drew Perttula", email = "drewp@bigasterisk.com"}, ] dependencies = [ "docopt>=0.6.2", - "aiohttp>=3.8.1", - "aioesphomeapi>=10.11.0", + "aiohttp>=3.9.5", + "aioesphomeapi>=24.3.0", "apriltag>=0.0.16", "numpy", - "aiohttp-sse>=2.1.0", + "aiohttp-sse>=2.2.0", "opencv-python", - "esphome>=2023.8.2", - "pillow>=10.2.0", - "setuptools>=69.1.1", + "esphome>=2024.6.4", + "pillow>=10.3.0", + "setuptools>=70.1.1", ] requires-python = ">=3.11" license = {text = "MIT"} @@ -23,3 +23,6 @@ [build-system] requires = ["pdm-pep517>=1.0.0"] build-backend = "pdm.pep517.api" + +[tool.pdm.scripts] +dashboard = {cmd = "esphome dashboard ."}