29 lines
644 B
TOML
29 lines
644 B
TOML
[tool.poetry]
|
|
name = "watt42_common"
|
|
version = "0.1.0"
|
|
description = "Common code (mostly python) to be used by the Engine and Drivers related to https://api-v3.watt42.com/docs"
|
|
authors = ["Chris Oloff <chris@watt42.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^8.4.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.pyright]
|
|
venvPath = "."
|
|
venv = ".venv"
|
|
reportMissingTypeStubs = false
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
asyncio_mode = "auto"
|
|
addopts = ["--doctest-modules", "--ignore=alembic"]
|