arraykit 1.2.0__cp314-cp314t-win32.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- arraykit/__init__.py +40 -0
- arraykit/__init__.pyi +211 -0
- arraykit/_arraykit.c +160 -0
- arraykit/_arraykit.cp314t-win32.pyd +0 -0
- arraykit/array_go.c +264 -0
- arraykit/array_go.h +8 -0
- arraykit/array_to_tuple.c +251 -0
- arraykit/array_to_tuple.h +14 -0
- arraykit/auto_map.c +2661 -0
- arraykit/auto_map.h +14 -0
- arraykit/block_index.c +1445 -0
- arraykit/block_index.h +15 -0
- arraykit/delimited_to_arrays.c +2972 -0
- arraykit/delimited_to_arrays.h +16 -0
- arraykit/methods.c +1135 -0
- arraykit/methods.h +81 -0
- arraykit/py.typed +0 -0
- arraykit/tri_map.c +1386 -0
- arraykit/tri_map.h +8 -0
- arraykit/utilities.h +392 -0
- arraykit-1.2.0.dist-info/METADATA +498 -0
- arraykit-1.2.0.dist-info/RECORD +25 -0
- arraykit-1.2.0.dist-info/WHEEL +5 -0
- arraykit-1.2.0.dist-info/licenses/LICENSE.txt +37 -0
- arraykit-1.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,498 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: arraykit
|
|
3
|
+
Version: 1.2.0
|
|
4
|
+
Summary: Array utilities for StaticFrame
|
|
5
|
+
Author: Christopher Ariza, Brandt Bucher, Charles Burkland
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/static-frame/arraykit
|
|
8
|
+
Keywords: numpy,array
|
|
9
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Software Development
|
|
12
|
+
Classifier: Programming Language :: C
|
|
13
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
14
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
15
|
+
Classifier: Operating System :: Microsoft :: Windows
|
|
16
|
+
Classifier: Operating System :: POSIX
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
|
+
Classifier: Programming Language :: Python :: Free Threading
|
|
23
|
+
Classifier: Typing :: Typed
|
|
24
|
+
Requires-Python: >=3.10
|
|
25
|
+
Description-Content-Type: text/x-rst
|
|
26
|
+
License-File: LICENSE.txt
|
|
27
|
+
Requires-Dist: numpy>=1.24.3
|
|
28
|
+
Dynamic: license-file
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
.. image:: https://img.shields.io/pypi/pyversions/arraykit.svg
|
|
33
|
+
:target: https://pypi.org/project/arraykit
|
|
34
|
+
|
|
35
|
+
.. image:: https://img.shields.io/pypi/v/arraykit.svg
|
|
36
|
+
:target: https://pypi.org/project/arraykit
|
|
37
|
+
|
|
38
|
+
.. image:: https://img.shields.io/conda/vn/conda-forge/arraykit.svg
|
|
39
|
+
:target: https://anaconda.org/conda-forge/arraykit
|
|
40
|
+
|
|
41
|
+
.. image:: https://img.shields.io/github/actions/workflow/status/static-frame/arraykit/ci.yml?branch=master&label=build&logo=Github
|
|
42
|
+
:target: https://github.com/static-frame/arraykit/actions/workflows/ci.yml
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
arraykit
|
|
46
|
+
=============
|
|
47
|
+
|
|
48
|
+
The ArrayKit library provides utilities for creating and transforming NumPy arrays, implementing performance-critical StaticFrame operations as Python C extensions.
|
|
49
|
+
|
|
50
|
+
Code: https://github.com/InvestmentSystems/arraykit
|
|
51
|
+
|
|
52
|
+
Packages: https://pypi.org/project/arraykit
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
Dependencies
|
|
56
|
+
--------------
|
|
57
|
+
|
|
58
|
+
ArrayKit requires the following:
|
|
59
|
+
|
|
60
|
+
- Python>=3.10
|
|
61
|
+
- numpy>=1.24.3
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
What is New in ArrayKit
|
|
65
|
+
-------------------------
|
|
66
|
+
|
|
67
|
+
1.2.0
|
|
68
|
+
............
|
|
69
|
+
|
|
70
|
+
Now building wheels for Python 3.14 and 3.14t.
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
1.1.0
|
|
74
|
+
............
|
|
75
|
+
|
|
76
|
+
Now building free-threaded compatible wheels for Python 3.13.
|
|
77
|
+
|
|
78
|
+
Added ``is_objectable()`` and ``is_objectable_dt64()``.
|
|
79
|
+
|
|
80
|
+
Added ``astype_array()``.
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
1.0.9
|
|
84
|
+
............
|
|
85
|
+
|
|
86
|
+
Updated types in ``pyi`` file.
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
1.0.8
|
|
90
|
+
............
|
|
91
|
+
|
|
92
|
+
NumPy ``datetime64`` scalar lookups in ``AutoMap`` and ``FrozenAutoMap`` explicitly require matching units.
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
1.0.7
|
|
96
|
+
............
|
|
97
|
+
|
|
98
|
+
Updated build configuration.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
1.0.6
|
|
102
|
+
............
|
|
103
|
+
|
|
104
|
+
Updated build configuration.
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
1.0.5
|
|
108
|
+
............
|
|
109
|
+
|
|
110
|
+
Updated build configuration.
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
1.0.4
|
|
114
|
+
............
|
|
115
|
+
|
|
116
|
+
Updated build configuration.
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
1.0.3
|
|
120
|
+
............
|
|
121
|
+
|
|
122
|
+
Updated build configuration.
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
1.0.2
|
|
126
|
+
............
|
|
127
|
+
|
|
128
|
+
Updated build configuration.
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
1.0.1
|
|
132
|
+
............
|
|
133
|
+
|
|
134
|
+
Updated build configuration.
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
1.0.0
|
|
138
|
+
............
|
|
139
|
+
|
|
140
|
+
Integrated ``AutoMap`` and ``FrozenAutoMap`` from ``arraymap``.
|
|
141
|
+
|
|
142
|
+
Removed global integer cache from ``AutoMap`` and ``FrozenAutoMap`` for thread safety.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
0.10.0
|
|
146
|
+
............
|
|
147
|
+
|
|
148
|
+
Now building wheels for Python 3.13.
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
0.9.0
|
|
152
|
+
............
|
|
153
|
+
|
|
154
|
+
Added ``TriMap.map_merge()``.
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
0.8.3
|
|
158
|
+
............
|
|
159
|
+
|
|
160
|
+
Corrected incorrect component of ``_TLabel`` in ``__init__.pyi``.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
0.8.2
|
|
164
|
+
............
|
|
165
|
+
|
|
166
|
+
Updated build configuration.
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
0.8.1
|
|
170
|
+
............
|
|
171
|
+
|
|
172
|
+
Updated build configuration.
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
0.8.0
|
|
176
|
+
............
|
|
177
|
+
|
|
178
|
+
Now building with NumPy 2.0.
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
0.7.2
|
|
182
|
+
............
|
|
183
|
+
|
|
184
|
+
Improved ``array_to_tuple_array()`` and ``array_to_tuple_iter()`` to preserve ``tuple`` in 1D arrays.
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
0.7.1
|
|
188
|
+
............
|
|
189
|
+
|
|
190
|
+
Extended ``array_to_tuple_array()`` and ``array_to_tuple_iter()`` to support 1D arrays.
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
0.7.0
|
|
194
|
+
............
|
|
195
|
+
|
|
196
|
+
Added ``array_to_tuple_array()``.
|
|
197
|
+
|
|
198
|
+
Added ``array_to_tuple_iter()``.
|
|
199
|
+
|
|
200
|
+
|
|
201
|
+
0.6.3
|
|
202
|
+
............
|
|
203
|
+
|
|
204
|
+
Optimized memory allocation strategy for ``nonzero_1d()``.
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
0.6.2
|
|
208
|
+
............
|
|
209
|
+
|
|
210
|
+
Extended ``nonzero_1d()`` to support non-contiguous arrays.
|
|
211
|
+
|
|
212
|
+
Optimizations to ``TriMap`` when mapping to object and flexible dtypes.
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
0.6.1
|
|
216
|
+
............
|
|
217
|
+
|
|
218
|
+
Enhancements and optimizations to ``TriMap``.
|
|
219
|
+
|
|
220
|
+
Added ``nonzero_1d()``.
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
0.6.0
|
|
224
|
+
............
|
|
225
|
+
|
|
226
|
+
Added ``TriMap`` utility class for join optimization.
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
0.5.1
|
|
230
|
+
............
|
|
231
|
+
|
|
232
|
+
Restored functional wheels for Mac OS ``x86_64``.
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
0.5.0
|
|
236
|
+
............
|
|
237
|
+
|
|
238
|
+
Now building wheels for 3.12.
|
|
239
|
+
|
|
240
|
+
Now building functional wheels for Mac OS ``arm64`` / Apple Silicon.
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
0.4.11
|
|
244
|
+
............
|
|
245
|
+
|
|
246
|
+
Updated types in ``pyi`` file.
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
0.4.10
|
|
250
|
+
............
|
|
251
|
+
|
|
252
|
+
Updated types in ``pyi`` file.
|
|
253
|
+
|
|
254
|
+
Minimum supported Python set to 3.8.
|
|
255
|
+
|
|
256
|
+
Minimum supported NumPy set to 1.19.5.
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
0.4.9
|
|
260
|
+
............
|
|
261
|
+
|
|
262
|
+
Improved performance of ``first_true_1d()`` and ``first_true_2d()``.
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
0.4.8
|
|
266
|
+
............
|
|
267
|
+
|
|
268
|
+
Restored behavior of ``Blockndex.rows`` to return -1 when ``BlockIndex`` has zero rows.
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
0.4.7
|
|
272
|
+
............
|
|
273
|
+
|
|
274
|
+
Added ``BlockIndex.iter_block()``.
|
|
275
|
+
|
|
276
|
+
Corrected issue in ``BlockIndex.shape`` when the ``BlockIndex`` has zero rows.
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
0.4.6
|
|
280
|
+
............
|
|
281
|
+
|
|
282
|
+
Corrected handling of empty selections in ``BlockIndex.iter_contiguous()``.
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
0.4.5
|
|
286
|
+
............
|
|
287
|
+
|
|
288
|
+
Corrected handling of ``ascending`` in ``BlockIndex.iter_contiguous()`` with Boolean arrays.
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
0.4.4
|
|
292
|
+
............
|
|
293
|
+
|
|
294
|
+
Corrected deallocation routines in ``BlockIndex.iter_contiguous()``.
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
0.4.3
|
|
298
|
+
............
|
|
299
|
+
|
|
300
|
+
Added ``BlockIndex.iter_contiguous()`` with options for ``ascending`` and ``reduce`` sequences.
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
0.4.2
|
|
304
|
+
............
|
|
305
|
+
|
|
306
|
+
Added ``slice_to_ascending_slice()``.
|
|
307
|
+
|
|
308
|
+
Updated ``BlockIndex.shape`` to internally cache the shape tuple.
|
|
309
|
+
|
|
310
|
+
Corrected ``BlockIndex.iter_select()`` handling of negative integers in sequences.
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
0.4.1
|
|
314
|
+
............
|
|
315
|
+
|
|
316
|
+
Updated ``BlockIndex.register()`` to handle 0-column 2D arrays and return False.
|
|
317
|
+
|
|
318
|
+
Added ``BlockIndex.rows``, ``BlockIndex.columns`` properties.
|
|
319
|
+
|
|
320
|
+
Updated unset ``BlockIndex.dtype`` to return a float dtype.
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
0.4.0
|
|
324
|
+
............
|
|
325
|
+
|
|
326
|
+
Added ``BlockIndex``, a tool to be used by ``TypeBlocks`` for mapping realized column positions to arrays.
|
|
327
|
+
|
|
328
|
+
Corrected potential issue in ``AK_CPL_resize_buffer`` that could segfault for very large offsets.
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
0.3.4
|
|
332
|
+
............
|
|
333
|
+
|
|
334
|
+
Simplified implementation of ``NaTType`` identification in ``isna_element()``.
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
0.3.3
|
|
338
|
+
............
|
|
339
|
+
|
|
340
|
+
Corrected potential memory leak in ``isna_element()``.
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
0.3.2
|
|
344
|
+
............
|
|
345
|
+
|
|
346
|
+
Optimization to ``delimited_to_arrays()`` character reading per line.
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
0.3.1
|
|
350
|
+
............
|
|
351
|
+
|
|
352
|
+
Improvements to ``delimited_to_arrays()``, including proper loading of ``float16`` types.
|
|
353
|
+
|
|
354
|
+
Extended ``deepcopy_array()`` to permit ``memo`` as None.
|
|
355
|
+
|
|
356
|
+
Corrected all compiler warnings on Windows.
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
0.3.0
|
|
360
|
+
............
|
|
361
|
+
|
|
362
|
+
Added ``first_true_1d()``, ``first_true_2d()``. Added tools for performance graphing.
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
0.2.9
|
|
366
|
+
............
|
|
367
|
+
|
|
368
|
+
Corrected segmentation fault resulting from attempting to parse invalid ``datetime64`` strings in ``AK_CPL_to_array_via_cast``.
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
0.2.8
|
|
372
|
+
............
|
|
373
|
+
|
|
374
|
+
Added ``include_none`` argument to ``isna_element()``; implemented identification of Pandas pd.Timestamp NaT.
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
0.2.7
|
|
378
|
+
............
|
|
379
|
+
|
|
380
|
+
Updated most-recent NumPy references to 1.23.5.
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
0.2.6
|
|
384
|
+
............
|
|
385
|
+
|
|
386
|
+
Maintenance release.
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
0.2.5
|
|
390
|
+
............
|
|
391
|
+
|
|
392
|
+
Optimization to numerical array creation in ``delimited_to_arrays()``.
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
0.2.4
|
|
396
|
+
............
|
|
397
|
+
|
|
398
|
+
Set NumPy minimum version at 1.18.5.
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
0.2.3
|
|
402
|
+
............
|
|
403
|
+
|
|
404
|
+
Extended arguments to and functionality in ``split_after_count()`` to support the complete CSV dialect interface.
|
|
405
|
+
|
|
406
|
+
Now building wheels for 3.11.
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
0.2.2
|
|
410
|
+
............
|
|
411
|
+
|
|
412
|
+
Refinements to ensure typed-parsed ints are always int64 in ``delimited_to_arrays()``.
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
0.2.1
|
|
416
|
+
............
|
|
417
|
+
|
|
418
|
+
Implemented ``count_iteration``, ``split_after_count``.
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
0.2.0
|
|
422
|
+
............
|
|
423
|
+
|
|
424
|
+
Implemented ``delimited_to_arrays``, ``iterable_str_to_array_1d``.
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
0.1.13
|
|
428
|
+
............
|
|
429
|
+
|
|
430
|
+
Now building Python 3.10 wheels.
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
0.1.12
|
|
434
|
+
............
|
|
435
|
+
|
|
436
|
+
Added ``get_new_indexers_and_screen``.
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
0.1.10
|
|
440
|
+
............
|
|
441
|
+
|
|
442
|
+
Updated minimum NumPy to 1.18.5
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
0.1.9
|
|
446
|
+
............
|
|
447
|
+
|
|
448
|
+
Improvements to performance of ``array_deepcopy``.
|
|
449
|
+
|
|
450
|
+
Added ``dtype_from_element``.
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
0.1.8
|
|
454
|
+
............
|
|
455
|
+
|
|
456
|
+
Revised cross compile releases.
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
0.1.7
|
|
460
|
+
............
|
|
461
|
+
|
|
462
|
+
Added ``dtype_from_element()``.
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
0.1.6
|
|
466
|
+
............
|
|
467
|
+
|
|
468
|
+
Explicit imports in ``__init__.py`` for better static analysis.
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
0.1.5
|
|
472
|
+
............
|
|
473
|
+
|
|
474
|
+
Added ``isna_element()``.
|
|
475
|
+
|
|
476
|
+
|
|
477
|
+
0.1.3
|
|
478
|
+
............
|
|
479
|
+
|
|
480
|
+
Redesigned package structure for inclusion of ``py.typed`` and ``__init__.pyi``.
|
|
481
|
+
|
|
482
|
+
``array_deepcopy`` now accepts kwargs and makes the ``memo`` dict optional.
|
|
483
|
+
|
|
484
|
+
|
|
485
|
+
0.1.2
|
|
486
|
+
..........
|
|
487
|
+
|
|
488
|
+
Maintenance release of the following interfaces:
|
|
489
|
+
|
|
490
|
+
``immutable_filter``
|
|
491
|
+
``mloc``
|
|
492
|
+
``shape_filter``
|
|
493
|
+
``column_2d_filter``
|
|
494
|
+
``column_1d_filter``
|
|
495
|
+
``row_1d_filter``
|
|
496
|
+
``array_deepcopy``
|
|
497
|
+
``resolve_dtype``
|
|
498
|
+
``resolve_dtype_iter``
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
arraykit/__init__.py,sha256=1SdL25p1FWhIe8cYK5izOL4lWp1tK-S-BwrwK7OJLhg,2040
|
|
2
|
+
arraykit/__init__.pyi,sha256=tUDckBKLVe-g52elu3vW9zhGyE8fqF5_ySj5y0XNWd0,8117
|
|
3
|
+
arraykit/_arraykit.c,sha256=qkAzttn89AuIB4mHd8gyLOSscOS4Knh9TAglkjb9tEo,5475
|
|
4
|
+
arraykit/_arraykit.cp314t-win32.pyd,sha256=GE2G_cKSQNhHFrvuEbGCLic2T7Uik6kcPL-Ja89Suvc,138752
|
|
5
|
+
arraykit/array_go.c,sha256=u9gRnVM8AejfHq6h1_fBCOcLb_Phloi2ch1TT57yH8k,7255
|
|
6
|
+
arraykit/array_go.h,sha256=D6qfN2Cb6lvb7S9lGEpKi6cOoBW86hzO1Uez4A9xhOQ,172
|
|
7
|
+
arraykit/array_to_tuple.c,sha256=QcBobwzJDAiM660Y7wQ04OGZXrnda2PWMAUL6syG9Q4,7898
|
|
8
|
+
arraykit/array_to_tuple.h,sha256=9OotdVKSH8_tJP2zwwhz6n3vciJsysTszG9N5lKI12w,418
|
|
9
|
+
arraykit/auto_map.c,sha256=VONyXUBLCXa3iWnU-Bub71e4sTCeZ_9lHJvAlp-yw28,90226
|
|
10
|
+
arraykit/auto_map.h,sha256=kBca0_HkJorAdTz0GzsQnkIT_IZzxxMHOHZeHZFbcDc,331
|
|
11
|
+
arraykit/block_index.c,sha256=Q_Vef-ysdHmV9t7BaAXJjUp-S166IXRXNqrbE_-BpkU,45754
|
|
12
|
+
arraykit/block_index.h,sha256=oR-WgZsdD6Xl7HyeFcrvBJ-LtBQkcfwizVFo9SaWcKI,449
|
|
13
|
+
arraykit/delimited_to_arrays.c,sha256=9v01-E0EEkBalXFsgL7rLKt5QBgCeN7QhBqGaNEuRrw,101568
|
|
14
|
+
arraykit/delimited_to_arrays.h,sha256=IuXW5AUhMZ6SC5s6VaC16mIC1-4CpQks4AmCsI2W56I,527
|
|
15
|
+
arraykit/methods.c,sha256=4b_8XbEcutBAn-6XS4QmaeOCOTnWGj7GhN8dUWx1dwc,37385
|
|
16
|
+
arraykit/methods.h,sha256=cL_1qGwnezLppaVOWbRrbu-HtIAzu_SwpvbL-LS1V4Y,2561
|
|
17
|
+
arraykit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
arraykit/tri_map.c,sha256=muneFRsA9FWmsoMrxm-X9v5wQm7RgJuJQgbyPM58MfY,52153
|
|
19
|
+
arraykit/tri_map.h,sha256=8_wYUqQTM2fTkP3GSHfQB0e0O3OrUZzpKuoGUXEFCJE,168
|
|
20
|
+
arraykit/utilities.h,sha256=LNkpOhGJI1p3UGQdS496gqB4EWNb5HtXCcjp_3tdkkg,13563
|
|
21
|
+
arraykit-1.2.0.dist-info/licenses/LICENSE.txt,sha256=3t-z3TUy-ObAbtNww27zjhtD70pPtxLG-bSU0fUEk1k,1816
|
|
22
|
+
arraykit-1.2.0.dist-info/METADATA,sha256=lZGxM2K05WWsUMopqJ4s6CmFf91F5FVCzO06ubhLLRE,8973
|
|
23
|
+
arraykit-1.2.0.dist-info/WHEEL,sha256=QZj5mezaA5oNm6LDNW4xgYLgBYwS1DTKsN1RAjQk9mo,98
|
|
24
|
+
arraykit-1.2.0.dist-info/top_level.txt,sha256=00W90765jXl-QEGzShY2mT-haT9R5aB_MiTmxrFaBhQ,9
|
|
25
|
+
arraykit-1.2.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
|
|
2
|
+
License
|
|
3
|
+
=============
|
|
4
|
+
|
|
5
|
+
MIT License
|
|
6
|
+
|
|
7
|
+
Copyright (c) 2012-2022 Christopher Ariza, Research Affiliates, others
|
|
8
|
+
|
|
9
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
10
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
11
|
+
in the Software without restriction, including without limitation the rights
|
|
12
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
13
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
14
|
+
furnished to do so, subject to the following conditions:
|
|
15
|
+
|
|
16
|
+
The above copyright notice and this permission notice shall be included in all
|
|
17
|
+
copies or substantial portions of the Software.
|
|
18
|
+
|
|
19
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
23
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
+
SOFTWARE.
|
|
26
|
+
|
|
27
|
+
IN NO EVENT SHALL RESEARCH AFFILATES, LLC (“RA”) BE LIABLE TO ANY PARTY FOR
|
|
28
|
+
DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST
|
|
29
|
+
PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF
|
|
30
|
+
RA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
31
|
+
|
|
32
|
+
RA SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
33
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
|
|
34
|
+
SOFTWARE AND ACCOMPANYING DOCUMENTATION OR TEXT, IF ANY, PROVIDED HEREUNDER IS
|
|
35
|
+
PROVIDED "AS IS". RA HAS NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES,
|
|
36
|
+
ENHANCEMENTS, OR MODIFICATIONS.
|
|
37
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
arraykit
|