Skip to content
Snippets Groups Projects
Commit e49fa030 authored by Martin Bauer's avatar Martin Bauer
Browse files

setup.py fix: feature tags like [interactive] did not work correctly

parent a63af352
Branches
No related merge requests found
...@@ -66,10 +66,13 @@ setup(name='lbmpy', ...@@ -66,10 +66,13 @@ setup(name='lbmpy',
], ],
python_requires=">=3.6", python_requires=">=3.6",
extras_require={ extras_require={
'gpu': ['pystencils[gpu]'], 'gpu': ['pycuda'],
'alltrafos': ['pystencils[alltrafos]'], 'opencl': ['pyopencl'],
'interactive': ['pystencils[interactive]', 'scipy', 'scikit-image', 'cython'], 'alltrafos': ['islpy', 'py-cpuinfo'],
'doc': ['pystencils[doc]'], 'interactive': ['scipy', 'scikit-image', 'cython', 'matplotlib',
'ipy_table', 'imageio', 'jupyter', 'pyevtk'],
'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx',
'sphinxcontrib-bibtex', 'sphinx_autodoc_typehints', 'pandoc'],
}, },
cmdclass={ cmdclass={
'quicktest': SimpleTestRunner 'quicktest': SimpleTestRunner
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment