-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcodemeta.json
More file actions
76 lines (76 loc) · 2.64 KB
/
codemeta.json
File metadata and controls
76 lines (76 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"@context": "https://w3id.org/codemeta/3.0",
"@type": "SoftwareSourceCode",
"name": "lazyarray",
"description": "lazyarray is a Python package that provides a lazily-evaluated numerical array class, ``larray``, based on and compatible with NumPy arrays.\n\nLazy evaluation means that any operations on the array (potentially including array construction) are not performed immediately, but are delayed until evaluation is specifically requested. Evaluation of only parts of the array is also possible.\n\nUse of an ``larray`` can potentially save considerable computation time and memory in cases where:\n\n* arrays are used conditionally (i.e. there are cases in which the array is never used)\n* only parts of an array are used (for example in distributed computation, in which each MPI node operates on a subset of the elements of the array)",
"author": [
{
"givenName": "Andrew P.",
"familyName": "Davison",
"type": "Person",
"id": "http://orcid.org/0000-0002-4793-7541"
},
{
"givenName": "Joël",
"familyName": "Chavas",
"type": "Person"
},
{
"givenName": "Elodie",
"familyName": "Legouée",
"type": "Person"
},
{
"givenName": "Ankur",
"familyName": "Sinha",
"type": "Person"
}
],
"license": [
"https://spdx.org/licenses/BSD-3-Clause"
],
"version": "0.7.0",
"dateModified": "2026-01-21",
"codeRepository": "https://github.com/NeuralEnsemble/lazyarray/",
"downloadUrl": "https://files.pythonhosted.org/packages/30/2c/fe1319b150a6800d9c1336d633590bf170573795fc7ecf3cb39f7707e62d/lazyarray-0.7.0.tar.gz",
"relatedLink": [
"https://lazyarray.readthedocs.io/"
],
"softwareHelp": [
"https://github.com/NeuralEnsemble/lazyarray/issues"
],
"releaseNotes": "* Minor updates to work with recent versions of NumPy and SciPy\n* Add support for Python 3.13, 3.14; remove testing for Python 3.9 and below, and for NumPy 1.22 and below.",
"programmingLanguage": [
"Python"
],
"operatingSystem": [
"Windows",
"Linux",
"macOS"
],
"availableOnDevice": [
"high-performance computer",
"desktop"
],
"softwareRequirements": [
"NumPy>=1.23.5"
],
"softwareSuggestions": [
"SciPy>=1.9.3"
],
"developmentStatus": "active",
"continuousIntegration": "https://github.com/NeuralEnsemble/lazyarray/actions",
"issueTracker": "https://github.com/NeuralEnsemble/lazyarray/issues",
"keywords": [
"lazy evaluation",
"array"
],
"maintainer": [
{
"givenName": "Andrew P.",
"familyName": "Davison",
"type": "Person",
"id": "http://orcid.org/0000-0002-4793-7541"
}
]
}