1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
|
[project]
name = "mpi4py"
dynamic = ["version", "readme"]
description = "Python bindings for MPI"
requires-python = ">=3.8"
license = {text = 'BSD-3-Clause'}
authors = [
{name = "Lisandro Dalcin", email = "dalcinl@gmail.com"},
]
keywords = [
"scientific computing",
"parallel computing",
"message passing interface",
"MPI",
]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: GPU",
"Environment :: GPU :: NVIDIA CUDA",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: BSD",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: C",
"Programming Language :: Cython",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://mpi4py.github.io/mpi4py/"
Documentation = "https://mpi4py.readthedocs.io/en/stable/"
Source = "https://github.com/mpi4py/mpi4py"
Issues = "https://github.com/mpi4py/mpi4py/issues"
Discussions = "https://github.com/mpi4py/mpi4py/discussions"
Downloads = "https://github.com/mpi4py/mpi4py/releases"
[tool.scikit-build]
minimum-version = "0.5"
experimental = true
sdist.exclude = [".*"]
wheel.packages = []
[tool.scikit-build.metadata]
version = {provider = "metadata", provider-path = "conf"}
readme = {provider = "metadata", provider-path = "conf"}
|