Skip to content
Snippets Groups Projects
Select Git revision
  • 1faeceb39c1736625bbb1182ca86772d44f76366
  • 2023 default protected
2 results

OpenImageDenoise-1.4.3-gcccoremkl-11.3.0-2022.1.0.eb

Blame
  • distributed-2022.12.0-gcccoremkl-11.3.0-2022.1.0.eb 1.22 KiB
    easyblock = 'Bundle'
    
    name = 'distributed'
    version = '2022.12.0'
    
    homepage = 'https://distributed.readthedocs.io/'
    description = """Dask.distributed is a lightweight library for distributed computing in Python.
     It extends both the concurrent.futures and dask APIs to moderate sized clusters."""
    
    toolchain = {'name': 'gcccoremkl', 'version': '11.3.0-2022.1.0'}
    
    
    # this is a bundle of Python packages
    exts_defaultclass = 'PythonPackage'
    
    dependencies = [
        ('Python', '3.10.4'),
        ('dask', '2022.12.0', '', ('gcccoremkl', '11.3.0-2022.1.0')),
        ('SciPy-bundle', '2022.05', '', ('gcccoremkl', '11.3.0-2022.1.0')),
        ('bokeh', '2.4.2', '', ('gcccoremkl', '11.3.0-2022.1.0')),
    ]
    
    
    exts_default_options = {
        'source_urls': [PYPI_SOURCE],
        'sanity_pip_check': True,
    }
    
    exts_list = [
        (name, version, {
            'source_urls': ['https://pypi.python.org/packages/source/d/distributed'],
            'checksums': ['d93707757f7fa3b2b803e43f6c14c41c3e453e9714bca8bf3013d3bf083c18ce'],
        }),
    ]
    
    sanity_check_paths = {
        'files': ['bin/dask-scheduler', 'bin/dask-ssh', 'bin/dask-worker'],
        'dirs': ['lib/python%(pyshortver)s/site-packages'],
    }
    
    modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']}
    
    moduleclass = 'tools'