mirror of
https://code.it4i.cz/sccs/easyconfigs-it4i.git
synced 2025-04-08 07:52:11 +01:00
49 lines
1.4 KiB
Plaintext
49 lines
1.4 KiB
Plaintext
easyblock = 'Bundle'
|
|
|
|
name = 'gensim'
|
|
version = '0.13.2'
|
|
versionsuffix = '-Python-%(pyver)s'
|
|
|
|
homepage = 'https://pypi.python.org/pypi/gensim'
|
|
description = """Gensim is a Python library for topic modelling, document indexing and similarity retrieval with
|
|
large corpora."""
|
|
|
|
toolchain = {'name': 'foss', 'version': '2016a'}
|
|
|
|
# this is a bundle of Python packages
|
|
exts_defaultclass = 'PythonPackage'
|
|
|
|
dependencies = [
|
|
('Python', '2.7.11'),
|
|
('requests', '2.10.0', '-Python-%(pyver)s'),
|
|
]
|
|
|
|
exts_list = [
|
|
('boto', '2.42.0', {
|
|
'source_urls': ['https://pypi.python.org/packages/source/b/%(name)s'],
|
|
'source_tmpl': '%(name)s-%(version)s.tar.gz',
|
|
}),
|
|
('bz2file', '0.98', {
|
|
'source_urls': ['https://pypi.python.org/packages/source/b/%(name)s'],
|
|
'source_tmpl': '%(name)s-%(version)s.tar.gz',
|
|
}),
|
|
('smart_open', '1.3.4', {
|
|
'source_urls': ['https://pypi.python.org/packages/source/s/%(name)s'],
|
|
'source_tmpl': '%(name)s-%(version)s.tar.gz',
|
|
}),
|
|
(name, version, {
|
|
'source_urls': ['https://pypi.python.org/packages/source/g/%(name)s'],
|
|
}),
|
|
]
|
|
|
|
# specify that Bundle easyblock should run a full sanity check, rather than just trying to load the module
|
|
full_sanity_check = True
|
|
|
|
sanity_check_paths = {
|
|
'files': [],
|
|
'dirs': ['lib/python%(pyshortver)s/site-packages'],
|
|
}
|
|
|
|
modextrapaths = {'PYTHONPATH': ['lib/python%(pyshortver)s/site-packages']}
|
|
|
|
moduleclass = 'lib' |