Include mpi4py as optional dependency in setup.py

This commit is contained in:
Paul Romano 2020-05-15 10:58:00 -05:00
parent a8503d090b
commit 2adff03042

View file

@ -43,7 +43,7 @@ kwargs = {
'download_url': 'https://github.com/openmc-dev/openmc/releases',
'project_urls': {
'Issue Tracker': 'https://github.com/openmc-dev/openmc/issues',
'Documentation': 'https://openmc.readthedocs.io',
'Documentation': 'https://docs.openmc.org',
'Source Code': 'https://github.com/openmc-dev/openmc',
},
'classifiers': [
@ -59,6 +59,7 @@ kwargs = {
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
# Dependencies
@ -68,6 +69,7 @@ kwargs = {
'pandas', 'lxml', 'uncertainties'
],
'extras_require': {
'depletion-mpi': ['mpi4py'],
'test': ['pytest', 'pytest-cov', 'colorama'],
'vtk': ['vtk'],
},