ELIC_Python-1-intel-2016a-Python-2.7.11.eb 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. easyblock = 'PythonBundle'
  2. name = 'ELIC_Python'
  3. version = '1'
  4. versionsuffix = '-Python-%(pyver)s'
  5. homepage = 'https://gogs.elic.ucl.ac.be'
  6. description = """This repo provides additional Python and R extensions for ELIC ecosystem."""
  7. toolchain = {'name': 'intel', 'version': '2016a'}
  8. dependencies = [
  9. ('Python', '2.7.11'),
  10. ('matplotlib', '1.5.1', versionsuffix),
  11. ('GEOS', '3.5.0', versionsuffix),
  12. ('GDAL', '2.0.2'),
  13. #('NCL', '6.6.2'),
  14. ('CDO', '1.7.2'),
  15. #('NCO', '4.9.5'),
  16. #('ncview', '2.1.7'),
  17. #('libmo_unpack', '3.1.2'),
  18. #('orca', '3.4.3'),
  19. ]
  20. exts_defaultclass = 'PythonPackage'
  21. exts_default_options = {
  22. 'source_tmpl': '%(name)s-%(version)s.tar.gz',
  23. }
  24. exts_list = [
  25. # Python deps, order is important!
  26. ('pip', '9.0.1', {
  27. 'modulename': 'pip',
  28. 'source_tmpl': '%(version)s.tar.gz',
  29. 'source_urls': ['https://github.com/pypa/pip/archive/'],
  30. }),
  31. ('PyKE', '1.1.1', {
  32. 'modulename': 'pyke',
  33. 'source_tmpl': 'pyke3-%(version)s.zip',
  34. 'source_urls': ['https://sourceforge.net/projects/%(name)s/files/%(name)s/%(version)s'],
  35. 'use_pip': True,
  36. }),
  37. ('basemap', '1.2.1rel', {
  38. 'modulename': 'mpl_toolkits',
  39. 'source_tmpl': 'v%(version)s.tar.gz',
  40. 'source_urls': ['https://github.com/matplotlib/basemap/archive'],
  41. 'use_pip': True,
  42. }),
  43. ]
  44. modextrapaths = {
  45. 'PYTHONPATH': 'lib/python%(pyshortver)s/site-packages',
  46. 'PYTHONUSERBASE': '',
  47. }
  48. postinstallcmds = [
  49. "cd %(installdir)s "
  50. ]
  51. #pip install olefile pyproj pyshp chardet urllib3 --user
  52. #pip install OWSLib eofs dask cf-units Cartopy netCDF4 mpi4py GitPython keyring --user
  53. #pip install certifi requests OWSLib netCDF4 geoval Shapely dask astropy oktopus bs4 tqdm cf-units cftime pyugrid cycler singledispatch backports_abc tornado toolz patsy statsmodels nc-time-axis yamale psutil bcrypt cffi cryptography Cython decorator mpi4py numpy pandas pbr pycparser scipy six virtualenv xlrd affine atomicwrites boto3 botocore click click-plugins cligj cloudpickle configobj docutils fiona geopandas jmespath more-itertools motionless munch networkx pathlib2 pluggy py pytest python-utils rasterio s3transfer scandir snuggs xarray py-expression-eval PyWavelets attrs progressbar2 scikit-image PyNaCl descartes graphviz wcwidth Bottleneck pickleshare simplegeneric prompt_toolkit Pygments ptyprocess pexpect typelib testpath parso jedi backcall scikit-learn ldap3 skills XlsxWriter retrying pyrsistent jsonschema plotly-charts --user
  54. #pip install SkillMetrics cdo PyQt5 --user
  55. moduleclass = 'numlib'