From 2adff030423c35da4c4a8b012a05729e73dd330f Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Fri, 15 May 2020 10:58:00 -0500 Subject: [PATCH] Include mpi4py as optional dependency in setup.py --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c193645c35..7e8183b121 100755 --- a/setup.py +++ b/setup.py @@ -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'], },