From e9e33def3fc6cfbb67262f86850bc13b8adf13bd Mon Sep 17 00:00:00 2001 From: Chris Oloff Date: Wed, 14 Jan 2026 14:00:41 +0200 Subject: [PATCH] initial --- poetry.toml | 2 ++ pyproject.toml | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 poetry.toml create mode 100644 pyproject.toml diff --git a/poetry.toml b/poetry.toml new file mode 100644 index 0000000..ab1033b --- /dev/null +++ b/poetry.toml @@ -0,0 +1,2 @@ +[virtualenvs] +in-project = true diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..57c81f4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,26 @@ +[tool.poetry] +name = "watt42-view" +version = "0.1.0" +description = "Watt42 View, a browser-based app to visualize a Watt42 system, and to interact with it" +authors = ["Chris Oloff "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" + +[tool.basedpyright] +venvPath = "." +venv = ".venv" +# verboseOutput = true +# include = ["."] +# extraPaths = ["."] +reportMissingTypeStubs = false + +[basedpyright.analysis] +extraPaths = ["."] +autoImportCompletions = true