diff --git a/.gitignore b/.gitignore index 1769786..012cf78 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,9 @@ htmlcov/ config.yaml identity.json +# Data +data/ + # Logs *.log .DS_Store diff --git a/pyproject.toml b/pyproject.toml index 7bfc376..4d52e7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,6 +48,10 @@ dependencies = [ hardware = [ "pymc_core[hardware]", ] +# RRD metrics (Performance Metrics chart); system librrd required (e.g. apt install rrdtool) +rrd = [ + "rrdtool", +] dev = [ "pytest>=7.4.0", "pytest-asyncio>=0.21.0",