From f75856ed2fa7bbb35c47e1f490309b1091bef76c Mon Sep 17 00:00:00 2001 From: Landung 'Don' Setiawan Date: Fri, 15 Sep 2023 09:57:40 -0700 Subject: [PATCH] chore(deps): Add all optional deps --- pyproject.toml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b0261ab..2add6a0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,6 +43,15 @@ version-file = "src/braingeneers/_version.py" local_scheme = "no-local-version" [project.optional-dependencies] +all = [ + 'braingeneers[data]', + 'braingeneers[analysis]', + 'braingeneers[ml]', + 'braingeneers[iot]', + 'braingeneers[hengenlab]', + 'braingeneers[test]', + 'braingeneers[docs]', +] data = [ 'h5py', 'smart_open @ git+https://github.com/davidparks21/smart_open.git@develop', # 'smart_open>=5.1.0', the hash version fixes the bytes from-to range header issue. @@ -76,10 +85,6 @@ test = [ "pytest >=6", "pytest-cov >=3", ] -dev = [ - "pytest >=6", - "pytest-cov >=3", -] docs = [ "sphinx>=4.0", "myst_parser>=0.13",