lamindb_setup 1.16.0__py3-none-any.whl → 1.18.0__py3-none-any.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.
@@ -1005,13 +1005,22 @@ def check_storage_is_empty(
1005
1005
  objects = [o for o in objects if "/.lamindb/_exclusion/" not in o]
1006
1006
  n_files = len(objects)
1007
1007
  n_diff = n_files - n_offset_objects
1008
- ask_for_deletion = (
1009
- "delete them prior to deleting the storage location"
1010
- if raise_error
1011
- else "consider deleting them"
1012
- )
1013
- message = f"'{directory_string}' contains {n_diff} objects - {ask_for_deletion}"
1014
1008
  if n_diff > 0:
1009
+ ask_for_deletion = (
1010
+ "delete them prior to deleting the storage location"
1011
+ if raise_error
1012
+ else "consider deleting them"
1013
+ )
1014
+ message = f"'{directory_string}' contains {n_diff} objects:\n"
1015
+ message += "\n".join(
1016
+ [
1017
+ o
1018
+ for o in objects
1019
+ if not o.endswith(".lamindb/storage_uid.txt")
1020
+ and not (account_for_sqlite_file and o.endswith(".lamindb/lamin.db"))
1021
+ ]
1022
+ )
1023
+ message += f"\n{ask_for_deletion}"
1015
1024
  if raise_error:
1016
1025
  raise StorageNotEmpty(message) from None
1017
1026
  else:
lamindb_setup/errors.py CHANGED
@@ -1,13 +1,13 @@
1
1
  """Errors.
2
2
 
3
3
  .. autoexception:: CurrentInstanceNotConfigured
4
- .. autoexception:: InstanceNotSetupError
5
4
  .. autoexception:: ModuleWasntConfigured
6
5
  .. autoexception:: StorageAlreadyManaged
7
6
  .. autoexception:: StorageNotEmpty
8
7
  .. autoexception:: InstanceLockedException
9
8
  .. autoexception:: SettingsEnvFileOutdated
10
9
  .. autoexception:: CannotSwitchDefaultInstance
10
+ .. autoexception:: InstanceNotFoundError
11
11
 
12
12
  """
13
13
 
@@ -25,17 +25,6 @@ class DefaultMessageException(Exception):
25
25
  super().__init__(message)
26
26
 
27
27
 
28
- # TODO: remove this exception sooner or later because we don't have a need for it anymore
29
- class InstanceNotSetupError(DefaultMessageException):
30
- default_message = """\
31
- To use lamindb, you need to connect to an instance.
32
-
33
- Connect to an instance: `ln.connect()`. Init an instance: `ln.setup.init()`.
34
-
35
- If you used the CLI to set up lamindb in a notebook, restart the Python session.
36
- """
37
-
38
-
39
28
  class CurrentInstanceNotConfigured(DefaultMessageException):
40
29
  default_message = """\
41
30
  No instance is connected! Call
@@ -63,6 +52,10 @@ class StorageNotEmpty(click.ClickException):
63
52
  pass
64
53
 
65
54
 
55
+ class InstanceNotFoundError(Exception):
56
+ pass
57
+
58
+
66
59
  # raise if a cloud SQLite instance is already locked
67
60
  # ignored by unlock_cloud_sqlite_upon_exception
68
61
  class InstanceLockedException(Exception):
lamindb_setup/io.py CHANGED
@@ -14,7 +14,7 @@ from django.db import models, transaction
14
14
  from rich.progress import Progress
15
15
 
16
16
  if TYPE_CHECKING:
17
- from collections.abc import Iterable, Sequence
17
+ from collections.abc import Iterable
18
18
  from typing import Literal
19
19
 
20
20
 
@@ -22,6 +22,9 @@ def _get_registries(module_name: str) -> list[str]:
22
22
  """Get registry class names from a module."""
23
23
  schema_module = import_module(module_name)
24
24
 
25
+ # Ensure that models are loaded; we've observed empty exports otherwise
26
+ from django.db import models
27
+
25
28
  return [
26
29
  name
27
30
  for name in dir(schema_module.models)
@@ -142,9 +145,9 @@ def _export_full_table(
142
145
 
143
146
 
144
147
  def export_db(
145
- module_names: Sequence[str] | None = None,
148
+ module_names: Iterable[str] | None = None,
146
149
  *,
147
- output_dir: str | Path = "./lamindb_export/",
150
+ output_dir: str | Path | None = None,
148
151
  max_workers: int = 8,
149
152
  chunk_size: int = 500_000,
150
153
  ) -> None:
@@ -159,6 +162,11 @@ def export_db(
159
162
  max_workers: Number of parallel processes.
160
163
  chunk_size: Number of rows per chunk for large tables.
161
164
  """
165
+ import lamindb_setup as ln_setup
166
+
167
+ if output_dir is None:
168
+ output_dir = f"./{ln_setup.settings.instance.name}_export/"
169
+
162
170
  directory = Path(output_dir)
163
171
  directory.mkdir(parents=True, exist_ok=True)
164
172
 
@@ -332,12 +340,15 @@ def import_db(
332
340
  Temporarily disables FK constraints to allow insertion in arbitrary order.
333
341
  Requires superuser/RDS admin privileges for postgres databases.
334
342
 
343
+ Note: When running in a subprocess, add a short delay or explicit connection close after `import_db()`
344
+ to ensure all SQLite writes are flushed to disk before process termination.
345
+
335
346
  Args:
336
347
  input_dir: Directory containing parquet files to import.
337
348
  module_names: Module names to import (e.g., ["lamindb", "bionty", "wetlab"]).
338
349
  if_exists: How to behave if table exists: 'fail', 'replace', or 'append'.
339
- If set to 'replace', existing data is deleted and new data is imported. PKs and indices are not guaranteed to be preserved which can lead to write errors.
340
- If set to 'append', new data is added to existing data without clearing the table. PKs and indices are preserved but database size will greatly increase.
350
+ If set to 'replace', existing data is deleted and new data is imported. All PKs and indices are not guaranteed to be preserved which can lead to write errors.
351
+ If set to 'append', new data is added to existing data without clearing the table. All PKs and indices are preserved allowing write operations but database size will greatly increase.
341
352
  If set to 'fail', raises an error if the table contains any data.
342
353
  """
343
354
  from django.db import connection
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: lamindb_setup
3
- Version: 1.16.0
3
+ Version: 1.18.0
4
4
  Summary: Setup & configure LaminDB.
5
5
  Author-email: Lamin Labs <open-source@lamin.ai>
6
6
  Requires-Python: >=3.10
@@ -15,14 +15,13 @@ Requires-Dist: httpx_retries<1.0.0
15
15
  Requires-Dist: requests
16
16
  Requires-Dist: universal_pathlib==0.2.6
17
17
  Requires-Dist: botocore<2.0.0
18
- Requires-Dist: supabase>=2.8.1,<=2.16.0
19
- Requires-Dist: gotrue<=2.12.0
20
- Requires-Dist: storage3!=0.11.2; python_version < '3.11'
18
+ Requires-Dist: supabase>=2.20.0,<=2.24.0
19
+ Requires-Dist: websockets>=13.0
21
20
  Requires-Dist: pyjwt<3.0.0
22
21
  Requires-Dist: psutil
23
22
  Requires-Dist: packaging
24
23
  Requires-Dist: aiobotocore[boto3]>=2.12.4,<3.0.0 ; extra == "aws"
25
- Requires-Dist: s3fs>=2023.12.2,<=2025.9.0,!=2024.10.0 ; extra == "aws"
24
+ Requires-Dist: s3fs>=2023.12.2,<=2025.12.0,!=2024.10.0 ; extra == "aws"
26
25
  Requires-Dist: line_profiler ; extra == "dev"
27
26
  Requires-Dist: psycopg2-binary ; extra == "dev"
28
27
  Requires-Dist: python-dotenv ; extra == "dev"
@@ -33,7 +32,7 @@ Requires-Dist: pytest-xdist ; extra == "dev"
33
32
  Requires-Dist: nbproject-test>=0.4.3 ; extra == "dev"
34
33
  Requires-Dist: pandas ; extra == "dev"
35
34
  Requires-Dist: django-schema-graph ; extra == "erdiagram"
36
- Requires-Dist: gcsfs>=2023.12.2,<=2025.9.0 ; extra == "gcp"
35
+ Requires-Dist: gcsfs>=2023.12.2,<=2025.12.0 ; extra == "gcp"
37
36
  Project-URL: Home, https://github.com/laminlabs/lamindb-setup
38
37
  Provides-Extra: aws
39
38
  Provides-Extra: dev
@@ -0,0 +1,51 @@
1
+ lamindb_setup/__init__.py,sha256=6Pygspa2jV-yke0v_7lZ1NXI-t11fGYpou54sYJIPl0,3270
2
+ lamindb_setup/_cache.py,sha256=pGvDNVHGx4HWr_6w5ajqEJOdysmaGc6F221qFnXkT-k,2747
3
+ lamindb_setup/_check.py,sha256=28PcG8Kp6OpjSLSi1r2boL2Ryeh6xkaCL87HFbjs6GA,129
4
+ lamindb_setup/_check_setup.py,sha256=zPQho12dctJYjnZxpumq2r7XRvXwrNyWi5-UMRPSeuE,4297
5
+ lamindb_setup/_connect_instance.py,sha256=2sPW9KF7wJvGlnUdi_eshzahfT319RwE3mhkZs1H2Fs,17339
6
+ lamindb_setup/_delete.py,sha256=ZMAik35NNcj4kDfOISDfzpicCi4j8gwmWAor0hEB-Jk,6123
7
+ lamindb_setup/_disconnect.py,sha256=B0K0yTIIyhwc3MzDFL_-cKutm-_DHsiJSTrkp1MMyXA,1470
8
+ lamindb_setup/_django.py,sha256=uIQflpkp8l3axyPaKURlk3kacgpElVP5KOKmFxYSMGk,1454
9
+ lamindb_setup/_entry_points.py,sha256=sKwXPX9xjOotoAjvgkU5LBwjjHLWVkh0ZGdiSsrch9k,522
10
+ lamindb_setup/_init_instance.py,sha256=EBdv0ga_nnqHU-m9fN7EkVg7YEuKOLxR8N87Ww2qEDg,14877
11
+ lamindb_setup/_migrate.py,sha256=mqJxm1EnB_1wJOhw_3djESyoc53bXJOXgBPndSRd5OU,12077
12
+ lamindb_setup/_register_instance.py,sha256=RdUZxZWHLdbvdNZWpF8e0UWROb_T0cStWbzc5yUw34I,1047
13
+ lamindb_setup/_schema.py,sha256=b3uzhhWpV5mQtDwhMINc2MabGCnGLESy51ito3yl6Wc,679
14
+ lamindb_setup/_schema_metadata.py,sha256=Whs-e4ZMnA1niZ2l5Eu8il-33IxI4Hr5ylGEgPxx8wk,15628
15
+ lamindb_setup/_set_managed_storage.py,sha256=xik6Amz8yS4R7ZIK8BVdNyvOo_ShBMjsDMAadfIwQZM,3274
16
+ lamindb_setup/_setup_user.py,sha256=9CwKUru2jza1vXu4A5V-q-oXnbIXwR_YwjKbVnETK7Q,6931
17
+ lamindb_setup/_silence_loggers.py,sha256=oQnvnvieqxARQQMwQkR82EJVk1TaM-Bo9o0UCOsCcXY,1697
18
+ lamindb_setup/errors.py,sha256=3u77okYz2NHXbX-TZkhHf5mJAXaaIIPBFPD21iSyRPg,1620
19
+ lamindb_setup/io.py,sha256=stTE6VHCIpLK1ueRuWEJGh35wo9Qd1NcNN1TnLEbK-U,17156
20
+ lamindb_setup/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
+ lamindb_setup/types.py,sha256=fuQxZJnrGYe7a_Ju9n1RqO-HhkOAr1l1xjpAg9dmBu8,605
22
+ lamindb_setup/core/__init__.py,sha256=oSTXxNCx6yfoqaHYTZM9qHuZKdMUIUF2DdXw4gBMBU4,592
23
+ lamindb_setup/core/_aws_options.py,sha256=fHc7ndBl7URMYeVliuw1GAoodOuxvYMadTna8m0PORo,10059
24
+ lamindb_setup/core/_aws_storage.py,sha256=QEtV-riQrwfivcwqHnXBbkJ-9YyNEXL4fLoCmOHZ1BI,2003
25
+ lamindb_setup/core/_clone.py,sha256=IE7d9n4qc8dvUgYbFavIkdUZ_BhsEHfoQzmcPDFuF4A,1537
26
+ lamindb_setup/core/_deprecated.py,sha256=M3vpM4fZPOncxY2qsXQAPeaEph28xWdv7tYaueaUyAA,2554
27
+ lamindb_setup/core/_docs.py,sha256=3k-YY-oVaJd_9UIY-LfBg_u8raKOCNfkZQPA73KsUhs,276
28
+ lamindb_setup/core/_hub_client.py,sha256=113SKT3Ki4KxyKqpYOwIB8mEG0ouy9oebLJoh_xGJZY,10426
29
+ lamindb_setup/core/_hub_core.py,sha256=29iPGnmV1hzYIMrErgwJoHwTQ5RHNJ6-icDM81aC4ac,29255
30
+ lamindb_setup/core/_hub_crud.py,sha256=j6516H82kLjFUNPqFGUINbDw9YbofMgjxadGzYb0OS4,6362
31
+ lamindb_setup/core/_hub_utils.py,sha256=6dyDGyzYFgVfR_lE3VN3CP1jGp98gxPtr-T91PAP05U,2687
32
+ lamindb_setup/core/_private_django_api.py,sha256=e-9WiGkI7g683nOdTcScS_fPG-_neNvrcWuAI9NEeQs,2529
33
+ lamindb_setup/core/_settings.py,sha256=LTeh2jsM01GHW2ZTrcc6rXNz6qIUT0VPEzpE9I8tg3Q,15497
34
+ lamindb_setup/core/_settings_instance.py,sha256=KoKwvSqOGEieGC-I5Dd0kIr_Q9OknRlno-nj3ZaX8R8,24903
35
+ lamindb_setup/core/_settings_load.py,sha256=D6r0fiqJznHhTN_apGlrKfYzl0g21shIaV4z4zEr7Z8,5780
36
+ lamindb_setup/core/_settings_save.py,sha256=96mWdYLyfvbnG_ok_vK4x7jm-rtqcWCD1OHEt2QSAms,3328
37
+ lamindb_setup/core/_settings_storage.py,sha256=e1FQ2uh13Cuw9Z5k6d71C825f6ISUnc1LtkDUO0QUIA,15590
38
+ lamindb_setup/core/_settings_store.py,sha256=auZssUBb6qE5oSqdGiHhqI2B46qSpegX89VwObPQksk,2601
39
+ lamindb_setup/core/_settings_user.py,sha256=gFfyMf-738onbh1Mf4wsmLlenQJPtjQfpUgKnOlqc2o,1453
40
+ lamindb_setup/core/_setup_bionty_sources.py,sha256=ox3X-SHiHa2lNPSWjwZhINypbLacX6kGwH6hVVrSFZc,1505
41
+ lamindb_setup/core/cloud_sqlite_locker.py,sha256=H_CTUCjURFXwD1cCtV_Jn0_60iztZTkaesLLXIBgIxc,7204
42
+ lamindb_setup/core/django.py,sha256=X_KDP6c9EgqG0JoHg-igv-rvpdZ9mF1LeeoTtZjVICc,13649
43
+ lamindb_setup/core/exceptions.py,sha256=qjMzqy_uzPA7mCOdnoWnS_fdA6OWbdZGftz-YYplrY0,84
44
+ lamindb_setup/core/hashing.py,sha256=4EDiMkdn96ct3oVkB64_4ujj6_EY5Vt8WMOMT5qnewI,3695
45
+ lamindb_setup/core/lamin.db.gz,sha256=cSWQ_ak6QN-SMyFA4x6zv-e2rNXr1IOrhDU5AfVAADc,81394
46
+ lamindb_setup/core/types.py,sha256=T7NwspfRHgIIpYsXDcApks8jkOlGeGRW-YbVLB7jNIo,67
47
+ lamindb_setup/core/upath.py,sha256=zlPZcDRHDYT7OcoOiX_w9koAzfBr9q8hB66OPwhTpBo,36504
48
+ lamindb_setup-1.18.0.dist-info/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
49
+ lamindb_setup-1.18.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
50
+ lamindb_setup-1.18.0.dist-info/METADATA,sha256=ooPr_CBzeS_-SFrbv6T9ixt2tZ7LEZdBUpPlohatn7w,1778
51
+ lamindb_setup-1.18.0.dist-info/RECORD,,
@@ -1,50 +0,0 @@
1
- lamindb_setup/__init__.py,sha256=zAgDC8o3cyH4eXcM60mbulFPECs5XZbqFRxLfGpgpc8,3215
2
- lamindb_setup/_cache.py,sha256=pGvDNVHGx4HWr_6w5ajqEJOdysmaGc6F221qFnXkT-k,2747
3
- lamindb_setup/_check.py,sha256=28PcG8Kp6OpjSLSi1r2boL2Ryeh6xkaCL87HFbjs6GA,129
4
- lamindb_setup/_check_setup.py,sha256=ToKMxsUq8dQBQh8baOrNVlSb1iC8h4zTg5dV8wMu0W4,6760
5
- lamindb_setup/_connect_instance.py,sha256=3dsaZ7LGzJYtOWDbi2RkiVJIJqdxy43suNjQ-6C96_U,17788
6
- lamindb_setup/_delete.py,sha256=KS3r-xGFuDmAbzPUy-9JR-YnPShYdaHjDRQrAmXQ0qM,5863
7
- lamindb_setup/_disconnect.py,sha256=FT8EpCm5XXDdhDH7QtAnkO3KPatq2HqT9VXGNjgJDbk,1232
8
- lamindb_setup/_django.py,sha256=uIQflpkp8l3axyPaKURlk3kacgpElVP5KOKmFxYSMGk,1454
9
- lamindb_setup/_entry_points.py,sha256=sKwXPX9xjOotoAjvgkU5LBwjjHLWVkh0ZGdiSsrch9k,522
10
- lamindb_setup/_init_instance.py,sha256=zNXmZPUHYda1CfLGtsvo4gNhHprK9QVPfffUIfBlTxE,14938
11
- lamindb_setup/_migrate.py,sha256=SN8uphuQX-8XShH5odLyzV8-eyXATDxB5hWoxwxmgBU,11264
12
- lamindb_setup/_register_instance.py,sha256=RdUZxZWHLdbvdNZWpF8e0UWROb_T0cStWbzc5yUw34I,1047
13
- lamindb_setup/_schema.py,sha256=b3uzhhWpV5mQtDwhMINc2MabGCnGLESy51ito3yl6Wc,679
14
- lamindb_setup/_schema_metadata.py,sha256=Whs-e4ZMnA1niZ2l5Eu8il-33IxI4Hr5ylGEgPxx8wk,15628
15
- lamindb_setup/_set_managed_storage.py,sha256=xQe5DXCRiQ5VseAjVC2Bki0wB0n0tSTchvVKSx9I6eo,3094
16
- lamindb_setup/_setup_user.py,sha256=cjQ-Md-FkP04PnBxocbHW6wCsZsNtD2T2NB52vAOnHI,6730
17
- lamindb_setup/_silence_loggers.py,sha256=AKF_YcHvX32eGXdsYK8MJlxEaZ-Uo2f6QDRzjKFCtws,1568
18
- lamindb_setup/errors.py,sha256=lccF3X3M2mcbHVG_0HxfuJRFFpUE-42paccIxFOfefQ,1958
19
- lamindb_setup/io.py,sha256=9s4Itt4rrHzsUATY79r4nhGp9zVAm-9uBhiQgg60l6U,16708
20
- lamindb_setup/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- lamindb_setup/types.py,sha256=fuQxZJnrGYe7a_Ju9n1RqO-HhkOAr1l1xjpAg9dmBu8,605
22
- lamindb_setup/core/__init__.py,sha256=adZtacDwG2C0tgx-ypp9yOAqw9qaR-IRWkgLurKpXVE,668
23
- lamindb_setup/core/_aws_options.py,sha256=9kQ5BB-cuJQrlJRGNqMRe1m48dP67xMbefOJP2c9OQw,9674
24
- lamindb_setup/core/_aws_storage.py,sha256=QEtV-riQrwfivcwqHnXBbkJ-9YyNEXL4fLoCmOHZ1BI,2003
25
- lamindb_setup/core/_clone.py,sha256=oLTMItGxRQB1THSDP-RG2eH1qPTVcuZ7_-eElttJ518,6451
26
- lamindb_setup/core/_deprecated.py,sha256=M3vpM4fZPOncxY2qsXQAPeaEph28xWdv7tYaueaUyAA,2554
27
- lamindb_setup/core/_docs.py,sha256=3k-YY-oVaJd_9UIY-LfBg_u8raKOCNfkZQPA73KsUhs,276
28
- lamindb_setup/core/_hub_client.py,sha256=vem145S5ppRPcWob7iclGhos8k-BfwJi9AI-l5PteDs,10481
29
- lamindb_setup/core/_hub_core.py,sha256=GAQK5XkHROIuqA-H8sOQZVlxvN4QIH_cmHY0TENnq2U,29090
30
- lamindb_setup/core/_hub_crud.py,sha256=j6516H82kLjFUNPqFGUINbDw9YbofMgjxadGzYb0OS4,6362
31
- lamindb_setup/core/_hub_utils.py,sha256=6dyDGyzYFgVfR_lE3VN3CP1jGp98gxPtr-T91PAP05U,2687
32
- lamindb_setup/core/_private_django_api.py,sha256=Z9uGL4CK0OX58rc8R_qarg9rIBp1DgjsjfP9Vj2vJHI,2629
33
- lamindb_setup/core/_settings.py,sha256=QbTrSkkdx0u685NJ4neNtWzhdHoaGMKcIvrfFnctTQ4,15450
34
- lamindb_setup/core/_settings_instance.py,sha256=eDkueLK5JZOGFhZRbGa-OffS9iBFlxMp47vF_MfmCYI,24301
35
- lamindb_setup/core/_settings_load.py,sha256=NQDOln8e3qyGphk8ucU7mm3HVkCv4QV4rDZro3TIwfo,5183
36
- lamindb_setup/core/_settings_save.py,sha256=96mWdYLyfvbnG_ok_vK4x7jm-rtqcWCD1OHEt2QSAms,3328
37
- lamindb_setup/core/_settings_storage.py,sha256=22EBagIr5qOZr9pqVkJsTcQtgE14en-Wh0y9rgF4FEQ,15677
38
- lamindb_setup/core/_settings_store.py,sha256=auZssUBb6qE5oSqdGiHhqI2B46qSpegX89VwObPQksk,2601
39
- lamindb_setup/core/_settings_user.py,sha256=gFfyMf-738onbh1Mf4wsmLlenQJPtjQfpUgKnOlqc2o,1453
40
- lamindb_setup/core/_setup_bionty_sources.py,sha256=ox3X-SHiHa2lNPSWjwZhINypbLacX6kGwH6hVVrSFZc,1505
41
- lamindb_setup/core/cloud_sqlite_locker.py,sha256=H_CTUCjURFXwD1cCtV_Jn0_60iztZTkaesLLXIBgIxc,7204
42
- lamindb_setup/core/django.py,sha256=aBdIN07ZCD8PGT04sjF1rruwlppx0cEobBnjk2Due70,12525
43
- lamindb_setup/core/exceptions.py,sha256=qjMzqy_uzPA7mCOdnoWnS_fdA6OWbdZGftz-YYplrY0,84
44
- lamindb_setup/core/hashing.py,sha256=Y8Uc5uSGTfU6L2R_gb5w8DdHhGRog7RnkK-e9FEMjPY,3680
45
- lamindb_setup/core/types.py,sha256=T7NwspfRHgIIpYsXDcApks8jkOlGeGRW-YbVLB7jNIo,67
46
- lamindb_setup/core/upath.py,sha256=_xs6CgqQezOe6h8oQURjpOl1WT_1ctROzH3yzesVceE,36188
47
- lamindb_setup-1.16.0.dist-info/LICENSE,sha256=UOZ1F5fFDe3XXvG4oNnkL1-Ecun7zpHzRxjp-XsMeAo,11324
48
- lamindb_setup-1.16.0.dist-info/WHEEL,sha256=CpUCUxeHQbRN5UGRQHYRJorO5Af-Qy_fHMctcQ8DSGI,82
49
- lamindb_setup-1.16.0.dist-info/METADATA,sha256=mkCWug_dpZRqU6Y0ajukECuIC8kezhh4bTYAIuDLAao,1830
50
- lamindb_setup-1.16.0.dist-info/RECORD,,