From e49fa0307f3ef388d04dfc356ccd2c2090c7e0a2 Mon Sep 17 00:00:00 2001
From: Martin Bauer <martin.bauer@fau.de>
Date: Fri, 11 Oct 2019 08:12:47 +0200
Subject: [PATCH] setup.py fix: feature tags like [interactive] did not work
 correctly

---
 setup.py | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py
index eb73637..8eafbbe 100644
--- a/setup.py
+++ b/setup.py
@@ -66,10 +66,13 @@ setup(name='lbmpy',
       ],
       python_requires=">=3.6",
       extras_require={
-            'gpu': ['pystencils[gpu]'],
-            'alltrafos': ['pystencils[alltrafos]'],
-            'interactive': ['pystencils[interactive]', 'scipy', 'scikit-image', 'cython'],
-            'doc': ['pystencils[doc]'],
+          'gpu': ['pycuda'],
+          'opencl': ['pyopencl'],
+          'alltrafos': ['islpy', 'py-cpuinfo'],
+          'interactive': ['scipy', 'scikit-image', 'cython', 'matplotlib',
+                          'ipy_table', 'imageio', 'jupyter', 'pyevtk'],
+          'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx',
+                  'sphinxcontrib-bibtex', 'sphinx_autodoc_typehints', 'pandoc'],
       },
       cmdclass={
           'quicktest': SimpleTestRunner
-- 
GitLab