How to use the mpipool.__version__ function in mpipool

To help you get started, we’ve selected a few mpipool examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github adrn / mpipool / setup.py View on Github external
from setuptools import setup
    setup
except ImportError:
    from distutils.core import setup
    setup

if sys.version_info[0] < 3:
    import __builtin__ as builtins
else:
    import builtins
builtins.__MPIPOOL_SETUP__ = True
import mpipool

setup(
    name="mpipool",
    version=mpipool.__version__,
    author="Adrian Price-Whelan",
    author_email="adrn@astro.columbia.edu",
    packages=["mpipool"],
    url="https://github.com/adrn/mpipool/",
    license="MIT",
    description="MPI pool",
    package_data={"": ["LICENSE", "AUTHORS"]},
    include_package_data=True,
    classifiers=[
        "Intended Audience :: Developers",
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python",
    ],

mpipool

Implementation of the futures and multiprocessing Pool interfaces based on MPI.

BSD-2-Clause
Latest version published 8 months ago

Package Health Score

53 / 100
Full package analysis

Similar packages