mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00

new file: a/ASE/ASE-3.21.1-intel-2020a.eb new file: c/CMake/CMake-3.18.4-GCCcore-9.3.0.eb new file: c/cURL/cURL-7.72.0-GCCcore-9.3.0.eb new file: e/Eigen/Eigen-3.3.8-GCCcore-9.3.0.eb new file: f/freetype/freetype-2.10.3-GCCcore-9.3.0.eb new file: g/GPAW-setups/GPAW-setups-0.9.20000.eb new file: g/GPAW/GPAW-21.1.0-intel-2020a-ASE-3.21.1.eb new file: g/GPAW/GPAW-21.1.0-intel-2020a-Py-3.7.eb new file: h/hypothesis/hypothesis-5.41.2-GCCcore-9.3.0.eb new file: i/iccifort/iccifort-2020.4.304.eb new file: l/libarchive/libarchive-3.4.3-GCCcore-9.3.0.eb new file: l/libjpeg-turbo/libjpeg-turbo-2.0.5-GCCcore-9.3.0.eb new file: m/matplotlib/matplotlib-3.3.3-intel-2020a.eb new file: n/NASM/NASM-2.15.05-GCCcore-9.3.0.eb new file: o/OpenMPI/OpenMPI-4.0.5-GCC-10.2.0.eb new file: p/Pillow/Pillow-8.0.1-GCCcore-9.3.0.eb new file: p/Python/Python-3.8.6-GCCcore-9.3.0.eb new file: p/pybind11/pybind11-2.6.0-GCCcore-9.3.0.eb new file: s/SQLite/SQLite-3.33.0-GCCcore-9.3.0.eb new file: s/SciPy-bundle/SciPy-bundle-2020.11-intel-2020a.eb new file: s/spglib-python/spglib-python-1.16.0-intel-2020a.eb new file: t/Tkinter/Tkinter-3.8.6-GCCcore-9.3.0.eb
74 lines
2.3 KiB
Plaintext
74 lines
2.3 KiB
Plaintext
# IT4Innovations 2021
|
|
# LK
|
|
|
|
easyblock = 'PythonBundle'
|
|
|
|
name = 'ASE'
|
|
version = '3.21.1'
|
|
|
|
homepage = 'https://wiki.fysik.dtu.dk/ase'
|
|
description = """ASE is a python package providing an open source Atomic Simulation Environment
|
|
in the Python scripting language.
|
|
|
|
From version 3.20.1 we also include the ase-ext package, it contains optional reimplementations
|
|
in C of functions in ASE. ASE uses it automatically when installed."""
|
|
|
|
toolchain = {'name': 'intel', 'version': '2020a'}
|
|
|
|
dependencies = [
|
|
('Python', '3.8.6'),
|
|
('SciPy-bundle', '2020.11'),
|
|
('Tkinter', '%(pyver)s'),
|
|
('matplotlib', '3.3.3'),
|
|
('spglib-python', '1.16.0'),
|
|
]
|
|
|
|
use_pip = True
|
|
sanity_pip_check = True
|
|
|
|
# required because we're building Python packages (MarkupSafe,
|
|
# ase-ext) using Intel compilers on top of Python built with GCC.
|
|
check_ldshared = True
|
|
|
|
exts_default_options = {'source_urls': [PYPI_SOURCE]}
|
|
|
|
exts_list = [
|
|
('MarkupSafe', '1.1.1', {
|
|
'checksums': ['29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b'],
|
|
}),
|
|
('Jinja2', '2.11.2', {
|
|
'checksums': ['89aab215427ef59c34ad58735269eb58b1a5808103067f7bb9d5836c651b3bb0'],
|
|
}),
|
|
('Werkzeug', '1.0.1', {
|
|
'checksums': ['6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c'],
|
|
}),
|
|
('click', '7.1.2', {
|
|
'checksums': ['d2b5255c7c6349bc1bd1e59e08cd12acbbd63ce649f2588755783aa94dfb6b1a'],
|
|
}),
|
|
('itsdangerous', '1.1.0', {
|
|
'checksums': ['321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19'],
|
|
}),
|
|
('Flask', '1.1.2', {
|
|
'checksums': ['4efa1ae2d7c9865af48986de8aeb8504bf32c7f3d6fdc9353d34b21f4b127060'],
|
|
}),
|
|
('pytest-mock', '3.5.1', {
|
|
'checksums': ['a1e2aba6af9560d313c642dae7e00a2a12b022b80301d9d7fc8ec6858e1dd9fc'],
|
|
}),
|
|
('ase', version, {
|
|
'checksums': ['78b01d88529d5f604e76bc64be102d48f058ca50faad72ac740d717545711c7b'],
|
|
}),
|
|
('ase-ext', '20.9.0', {
|
|
'checksums': ['a348b0e42cf9fdd11f04b3df002b0bf150002c8df2698ff08d3c8fc7a1223aed'],
|
|
}),
|
|
]
|
|
|
|
sanity_check_paths = {
|
|
'files': ['bin/ase'],
|
|
'dirs': ['lib/python%(pyshortver)s/site-packages'],
|
|
}
|
|
|
|
# make sure Tkinter is available, otherwise 'ase gui' will not work
|
|
sanity_check_commands = ["python -c 'import tkinter' "]
|
|
|
|
moduleclass = 'chem'
|