Skip to content
Snippets Groups Projects
Unverified Commit 13986d26 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler Committed by René Fritze
Browse files

[P] extras_requires -> extras_require

parent ba12c9e5
No related branches found
No related tags found
1 merge request!24Some python fixes
Pipeline #63609 passed
......@@ -19,9 +19,9 @@ requires=['binpacking==1.3', 'cython', 'jinja2', 'docopt', 'pylicense3>=0.4.1',
'ipython', 'pytest', 'pytest-cov', 'cmake_format==0.4.1',
'codecov', 'yapf==0.25', 'loguru', 'numpy', 'scipy',
'k3d==2.6.6', 'vtk', 'ipywidgets', 'lxml', 'xmljson']
extras_requires=[]
extras_require = []
if '${HAVE_MPI}' == 'TRUE':
extras_requires.append('mpi4py')
extras_require.append('mpi4py')
setup(name='dune.xt',
version='2.4',
......@@ -35,7 +35,7 @@ setup(name='dune.xt',
zip_safe = 0,
package_data = {'': ['*.so']},
install_requires=requires,
extras_requires={'parallel': extras_requires},
extras_require={'parallel': extras_require},
scripts=['./scripts/generate_compare_functions.py',
'./scripts/distribute_testing.py',
'./scripts/dxt_code_generation.py',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment