From ee8e84171f063ff446da3c4c003b6c23d3c5b17d Mon Sep 17 00:00:00 2001 From: liamhuber Date: Fri, 3 Nov 2023 10:04:50 -0700 Subject: [PATCH] Move the same modules to extra requirements in setup.py --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 53cf9c79..d39acafe 100644 --- a/setup.py +++ b/setup.py @@ -31,14 +31,17 @@ 'bidict==0.22.1', 'cloudpickle==3.0.0', 'graphviz==0.20.1', - 'maggma==0.57.4', 'matplotlib==3.8.0', - 'numpy==1.26.0', - 'pyiron_atomistics==0.3.5', 'pyiron_base==0.6.8', 'toposort==1.10', 'typeguard==4.1.5', ], + extras_require={ + "node_library": [ + 'numpy==1.26.0', + 'pyiron_atomistics==0.3.5', + ], + }, cmdclass=versioneer.get_cmdclass(), )