Skip to content

Commit

Permalink
Merge pull request #128 from TRI-AMDD/move_requirements
Browse files Browse the repository at this point in the history
move dash and dask requirements to extras
  • Loading branch information
laurasootes authored Oct 9, 2023
2 parents 34bb1bc + e1e032f commit 58b52d3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@
'mpet.electrode.reactions',
'mpet.electrolyte','mpet.config'
],
install_requires=['numpy','scipy','matplotlib','pyQt5', 'h5py', 'configparser', 'schema',
'dask-jobqueue', 'dash', 'dash_bootstrap_components', 'bokeh'],
install_requires=['numpy','scipy','matplotlib','pyQt5', 'h5py', 'configparser', 'schema'],
extras_require={'test':['pytest','coverage', 'coveralls', 'flake8'],
'doc':['sphinx','sphinx_rtd_theme']},
'doc':['sphinx','sphinx_rtd_theme'],
'dashboard': ['dash', 'dash_bootstrap_components'],
'cluster_jobs': ['dask-jobqueue', 'bokeh']},
python_requires='>=3.6',
scripts=['bin/mpetrun.py','bin/mpetplot.py','bin/run_jobs.py', 'bin/create_ensemble.py',
'bin/mpet_create_runjobs_dashboard.py', 'bin/mpet_plot_app.py'],
Expand Down

0 comments on commit 58b52d3

Please sign in to comment.