Skip to content

Commit

Permalink
maint: add install dependencies for sbi (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
asoplata authored and samadpls committed Nov 26, 2024
1 parent 81d7e34 commit fa2765f
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,18 +75,19 @@ def run(self):

if __name__ == "__main__":
extras = {
'opt': ['scikit-learn'],
'parallel': ['joblib', 'psutil'],
'test': ['flake8', 'pytest', 'pytest-cov', ],
'docs': ['mne', 'nibabel', 'pooch', 'tdqm',
'sphinx', 'sphinx-gallery',
'sphinx_bootstrap_theme', 'sphinx-copybutton',
'pillow', 'numpydoc',
],
'gui': ['ipywidgets>=8.0.0', 'ipykernel', 'ipympl', 'voila', ],
'opt': ['scikit-learn'],
'parallel': ['joblib', 'psutil'],
'sbi': ['sbi'],
'test': ['flake8', 'pytest', 'pytest-cov', ],
}
extras['dev'] = (extras['opt'] + extras['parallel'] + extras['test'] +
extras['docs'] + extras['gui']
extras['dev'] = (extras['docs'] + extras['gui'] + extras['opt']
+ extras['parallel'] + extras['sbi'] + extras['test']
)


Expand Down

0 comments on commit fa2765f

Please sign in to comment.