From 289a948713d490aa34656357d0d13312110ba880 Mon Sep 17 00:00:00 2001 From: Alex Barajas Date: Wed, 10 Dec 2025 20:15:48 -0800 Subject: [PATCH] small fix --- pyproject.toml | 2 +- src/wecgrid/__init__.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index f7603d5..eda42c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,6 +15,7 @@ dependencies = [ "scipy==1.7.3", "pandas==1.3.5", "matplotlib==3.5.3", + "matplotlib-inline==0.1.6", "pypsa==0.20.1", "grg-pssedata==0.1.4", "networkx==2.6.3", @@ -22,7 +23,6 @@ dependencies = [ "tqdm", "jupyter", "mkdocstrings-python" - ] classifiers = [ "Programming Language :: Python :: 3", diff --git a/src/wecgrid/__init__.py b/src/wecgrid/__init__.py index 0a7412f..24049d4 100644 --- a/src/wecgrid/__init__.py +++ b/src/wecgrid/__init__.py @@ -6,7 +6,9 @@ Email: barajale@oregonstate.edu """ +__version__ = "1.0.0" + # Expose the main Engine entry point from .engine import Engine -__all__ = ["Engine"] +__all__ = ["Engine", "__version__"] \ No newline at end of file