forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding easyconfigs: mpl-ascii-0.10.0-gfbf-2023b.eb
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
easybuild/easyconfigs/m/mpl-ascii/mpl-ascii-0.10.0-gfbf-2023b.eb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
easyblock = 'PythonBundle' | ||
|
||
name = 'mpl-ascii' | ||
version = '0.10.0' | ||
|
||
homepage = 'https://github.com/chriscave/mpl_ascii' | ||
description = "A matplotlib backend that produces plots using only ASCII characters" | ||
|
||
toolchain = {'name': 'gfbf', 'version': '2023b'} | ||
|
||
dependencies = [ | ||
('Python', '3.11.5'), | ||
('Python-bundle-PyPI', '2023.10'), | ||
('matplotlib', '3.8.2'), | ||
] | ||
|
||
use_pip = True | ||
sanity_pip_check = True | ||
|
||
exts_list = [ | ||
(name, version, { | ||
'source_tmpl': 'mpl_ascii-%(version)s.tar.gz', | ||
'checksums': ['8e4ae770d5a612dab0e8055c7677c6c3d271da4f5127cce46a60ce3ce4a4e72c'], | ||
# relax version constraint for rich | ||
'preinstallopts': """sed -i 's/"rich>=.*"/"rich"/g' pyproject.toml && """, | ||
}), | ||
] | ||
|
||
moduleclass = 'vis' |