Skip to content

Commit

Permalink
Make matplotlib and pandas optional deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
sgpinkus committed Nov 2, 2024
1 parent 672f745 commit 2f60cf1
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "device_kit"
version = "1.0.4"
version = "1.0.5"
authors = [
{ name="Sam Pinkus", email="[email protected]" },
]
Expand All @@ -21,14 +21,16 @@ classifiers = [
]
keywords = ["microgrid", "day-ahead", "simulation", "modeling"]
dependencies = [
"matplotlib>=3.5",
"numpy>=1.26",
"pandas>=2.2",
"scipy>=1.12",
"numdifftools==0.9.41",
]
[project.optional-dependencies]
gui = ["PyQt5"]
run = [
"matplotlib>=3.5",
"pandas>=2.2"
]

[project.urls]
Homepage = "https://github.com/sgpinkus/device_kit"
Expand Down

0 comments on commit 2f60cf1

Please sign in to comment.