12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- easyblock = 'Binary'
- name = 'ELIC'
- version = '0.2'
- versionsuffix = '-Python-%(pyver)s'
- homepage = 'https://gogs.elic.ucl.ac.be'
- description = """This repo provides additional Python and R extensions for ELIC ecosystem."""
- toolchain = {'name': 'foss', 'version': '2018b'}
- toolchainopts = {'pic': True}
- source_urls = ['https://github.com/ESMValGroup/ESMValTool/archive/']
- sources = [{'filename': 'ESMValTool.tar.gz', 'download_filename': 'v2.0a1.tar.gz'}]
- dependencies = [
- ('Python', '2.7.15'),
- ('ELIC', '0.1', versionsuffix),
- ('orca', '1.2.1', '-nodejs-8.9.4'),
- ]
- exts_defaultclass = 'PythonPackage'
- exts_default_options = {
- 'source_tmpl': '%(name)s-%(version)s.tar.gz',
- }
- #exts_classmap = {
- # 'gdtools': 'RPackage',
- #}
- exts_list = [
- # Python deps, order is important!
- ('SkillMetrics', '1.1.6', {
- 'modulename': 'skill_metrics',
- 'source_urls': ['https://pypi.python.org/packages/source/s/SkillMetrics/'],
- }),
- ('plotly', '3.8.1', {
- 'modulename': 'plotly',
- 'source_urls': ['https://pypi.python.org/packages/source/p/plotly/'],
- }),
- ('Bottleneck', '1.2.1', {
- 'modulename': 'bottleneck',
- 'source_urls': ['https://pypi.python.org/packages/source/b/Bottleneck/'],
- }),
- ################################
- # R extension
- #('gdtools', '0.1.7', {
- # 'source_tmpl': '%(name)s_%(version)s.tar.gz',
- # 'source_urls': [
- # 'http://cran.r-project.org/src/contrib/Archive/gdtools',
- # 'http://cran.r-project.org/src/contrib/',
- # 'http://cran.freestatistics.org/src/contrib',
- # ],
- #}),
- ]
- sanity_check_paths = {
- 'files': ['ESMValTool.tar.gz'],
- 'dirs': [],
- }
- modextrapaths = {
- 'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages',
- 'PYTHONUSERBASE': '',
- 'R_LIBS': '',
- }
- moduleclass = 'numlib'
|