27 lines
569 B
TOML
27 lines
569 B
TOML
|
|
[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 <chris@uber5.com>"]
|
||
|
|
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
|