omdev 0.0.0.dev401__py3-none-any.whl → 0.0.0.dev403__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.
omdev/cli/types.py CHANGED
@@ -1,4 +1,5 @@
1
1
  # ruff: noqa: UP007 UP045
2
+ # @omlish-lite
2
3
  import dataclasses as dc
3
4
  import typing as ta
4
5
 
@@ -610,24 +610,40 @@ _GENERIC_ALIAS_TYPES = (
610
610
  )
611
611
 
612
612
 
613
- def is_generic_alias(obj, *, origin: ta.Any = None) -> bool:
613
+ def is_generic_alias(obj: ta.Any, *, origin: ta.Any = None) -> bool:
614
614
  return (
615
615
  isinstance(obj, _GENERIC_ALIAS_TYPES) and
616
616
  (origin is None or ta.get_origin(obj) is origin)
617
617
  )
618
618
 
619
619
 
620
- is_union_alias = functools.partial(is_generic_alias, origin=ta.Union)
621
620
  is_callable_alias = functools.partial(is_generic_alias, origin=ta.Callable)
622
621
 
623
622
 
624
623
  ##
625
624
 
626
625
 
626
+ _UNION_ALIAS_ORIGINS = frozenset([
627
+ ta.get_origin(ta.Optional[int]),
628
+ *(
629
+ [
630
+ ta.get_origin(int | None),
631
+ ta.get_origin(getattr(ta, 'TypeVar')('_T') | None),
632
+ ] if sys.version_info >= (3, 10) else ()
633
+ ),
634
+ ])
635
+
636
+
637
+ def is_union_alias(obj: ta.Any) -> bool:
638
+ return ta.get_origin(obj) in _UNION_ALIAS_ORIGINS
639
+
640
+
641
+ #
642
+
643
+
627
644
  def is_optional_alias(spec: ta.Any) -> bool:
628
645
  return (
629
- isinstance(spec, _GENERIC_ALIAS_TYPES) and # noqa
630
- ta.get_origin(spec) is ta.Union and
646
+ is_union_alias(spec) and
631
647
  len(ta.get_args(spec)) == 2 and
632
648
  any(a in (None, type(None)) for a in ta.get_args(spec))
633
649
  )
@@ -1304,32 +1320,32 @@ class ObjMarshalerManager:
1304
1320
  [e] = ta.get_args(ty)
1305
1321
  return IterableObjMarshaler(st, rec(e))
1306
1322
 
1307
- if is_union_alias(ty):
1308
- uts = frozenset(ta.get_args(ty))
1309
- if None in uts or type(None) in uts:
1310
- is_opt = True
1311
- uts = frozenset(ut for ut in uts if ut not in (None, type(None)))
1312
- else:
1313
- is_opt = False
1323
+ if is_union_alias(ty):
1324
+ uts = frozenset(ta.get_args(ty))
1325
+ if None in uts or type(None) in uts:
1326
+ is_opt = True
1327
+ uts = frozenset(ut for ut in uts if ut not in (None, type(None)))
1328
+ else:
1329
+ is_opt = False
1314
1330
 
1315
- um: ObjMarshaler
1316
- if not uts:
1317
- raise TypeError(ty)
1318
- elif len(uts) == 1:
1319
- um = rec(check.single(uts))
1331
+ um: ObjMarshaler
1332
+ if not uts:
1333
+ raise TypeError(ty)
1334
+ elif len(uts) == 1:
1335
+ um = rec(check.single(uts))
1336
+ else:
1337
+ pt = tuple({ut for ut in uts if ut in _OBJ_MARSHALER_PRIMITIVE_TYPES})
1338
+ np_uts = {ut for ut in uts if ut not in _OBJ_MARSHALER_PRIMITIVE_TYPES}
1339
+ if not np_uts:
1340
+ um = PrimitiveUnionObjMarshaler(pt)
1341
+ elif len(np_uts) == 1:
1342
+ um = PrimitiveUnionObjMarshaler(pt, x=rec(check.single(np_uts)))
1320
1343
  else:
1321
- pt = tuple({ut for ut in uts if ut in _OBJ_MARSHALER_PRIMITIVE_TYPES})
1322
- np_uts = {ut for ut in uts if ut not in _OBJ_MARSHALER_PRIMITIVE_TYPES}
1323
- if not np_uts:
1324
- um = PrimitiveUnionObjMarshaler(pt)
1325
- elif len(np_uts) == 1:
1326
- um = PrimitiveUnionObjMarshaler(pt, x=rec(check.single(np_uts)))
1327
- else:
1328
- raise TypeError(ty)
1329
-
1330
- if is_opt:
1331
- um = OptionalObjMarshaler(um)
1332
- return um
1344
+ raise TypeError(ty)
1345
+
1346
+ if is_opt:
1347
+ um = OptionalObjMarshaler(um)
1348
+ return um
1333
1349
 
1334
1350
  raise TypeError(ty)
1335
1351
 
omdev/scripts/ci.py CHANGED
@@ -1433,24 +1433,40 @@ _GENERIC_ALIAS_TYPES = (
1433
1433
  )
1434
1434
 
1435
1435
 
1436
- def is_generic_alias(obj, *, origin: ta.Any = None) -> bool:
1436
+ def is_generic_alias(obj: ta.Any, *, origin: ta.Any = None) -> bool:
1437
1437
  return (
1438
1438
  isinstance(obj, _GENERIC_ALIAS_TYPES) and
1439
1439
  (origin is None or ta.get_origin(obj) is origin)
1440
1440
  )
1441
1441
 
1442
1442
 
1443
- is_union_alias = functools.partial(is_generic_alias, origin=ta.Union)
1444
1443
  is_callable_alias = functools.partial(is_generic_alias, origin=ta.Callable)
1445
1444
 
1446
1445
 
1447
1446
  ##
1448
1447
 
1449
1448
 
1449
+ _UNION_ALIAS_ORIGINS = frozenset([
1450
+ ta.get_origin(ta.Optional[int]),
1451
+ *(
1452
+ [
1453
+ ta.get_origin(int | None),
1454
+ ta.get_origin(getattr(ta, 'TypeVar')('_T') | None),
1455
+ ] if sys.version_info >= (3, 10) else ()
1456
+ ),
1457
+ ])
1458
+
1459
+
1460
+ def is_union_alias(obj: ta.Any) -> bool:
1461
+ return ta.get_origin(obj) in _UNION_ALIAS_ORIGINS
1462
+
1463
+
1464
+ #
1465
+
1466
+
1450
1467
  def is_optional_alias(spec: ta.Any) -> bool:
1451
1468
  return (
1452
- isinstance(spec, _GENERIC_ALIAS_TYPES) and # noqa
1453
- ta.get_origin(spec) is ta.Union and
1469
+ is_union_alias(spec) and
1454
1470
  len(ta.get_args(spec)) == 2 and
1455
1471
  any(a in (None, type(None)) for a in ta.get_args(spec))
1456
1472
  )
@@ -2830,6 +2846,7 @@ def _get_argparse_arg_ann_kwargs(ann: ta.Any) -> ta.Mapping[str, ta.Any]:
2830
2846
  class _ArgparseCliAnnotationBox:
2831
2847
  def __init__(self, annotations: ta.Mapping[str, ta.Any]) -> None:
2832
2848
  super().__init__()
2849
+
2833
2850
  self.__annotations__ = annotations # type: ignore
2834
2851
 
2835
2852
 
@@ -5269,32 +5286,32 @@ class ObjMarshalerManager:
5269
5286
  [e] = ta.get_args(ty)
5270
5287
  return IterableObjMarshaler(st, rec(e))
5271
5288
 
5272
- if is_union_alias(ty):
5273
- uts = frozenset(ta.get_args(ty))
5274
- if None in uts or type(None) in uts:
5275
- is_opt = True
5276
- uts = frozenset(ut for ut in uts if ut not in (None, type(None)))
5277
- else:
5278
- is_opt = False
5289
+ if is_union_alias(ty):
5290
+ uts = frozenset(ta.get_args(ty))
5291
+ if None in uts or type(None) in uts:
5292
+ is_opt = True
5293
+ uts = frozenset(ut for ut in uts if ut not in (None, type(None)))
5294
+ else:
5295
+ is_opt = False
5279
5296
 
5280
- um: ObjMarshaler
5281
- if not uts:
5282
- raise TypeError(ty)
5283
- elif len(uts) == 1:
5284
- um = rec(check.single(uts))
5297
+ um: ObjMarshaler
5298
+ if not uts:
5299
+ raise TypeError(ty)
5300
+ elif len(uts) == 1:
5301
+ um = rec(check.single(uts))
5302
+ else:
5303
+ pt = tuple({ut for ut in uts if ut in _OBJ_MARSHALER_PRIMITIVE_TYPES})
5304
+ np_uts = {ut for ut in uts if ut not in _OBJ_MARSHALER_PRIMITIVE_TYPES}
5305
+ if not np_uts:
5306
+ um = PrimitiveUnionObjMarshaler(pt)
5307
+ elif len(np_uts) == 1:
5308
+ um = PrimitiveUnionObjMarshaler(pt, x=rec(check.single(np_uts)))
5285
5309
  else:
5286
- pt = tuple({ut for ut in uts if ut in _OBJ_MARSHALER_PRIMITIVE_TYPES})
5287
- np_uts = {ut for ut in uts if ut not in _OBJ_MARSHALER_PRIMITIVE_TYPES}
5288
- if not np_uts:
5289
- um = PrimitiveUnionObjMarshaler(pt)
5290
- elif len(np_uts) == 1:
5291
- um = PrimitiveUnionObjMarshaler(pt, x=rec(check.single(np_uts)))
5292
- else:
5293
- raise TypeError(ty)
5310
+ raise TypeError(ty)
5294
5311
 
5295
- if is_opt:
5296
- um = OptionalObjMarshaler(um)
5297
- return um
5312
+ if is_opt:
5313
+ um = OptionalObjMarshaler(um)
5314
+ return um
5298
5315
 
5299
5316
  raise TypeError(ty)
5300
5317
 
omdev/scripts/interp.py CHANGED
@@ -1301,24 +1301,40 @@ _GENERIC_ALIAS_TYPES = (
1301
1301
  )
1302
1302
 
1303
1303
 
1304
- def is_generic_alias(obj, *, origin: ta.Any = None) -> bool:
1304
+ def is_generic_alias(obj: ta.Any, *, origin: ta.Any = None) -> bool:
1305
1305
  return (
1306
1306
  isinstance(obj, _GENERIC_ALIAS_TYPES) and
1307
1307
  (origin is None or ta.get_origin(obj) is origin)
1308
1308
  )
1309
1309
 
1310
1310
 
1311
- is_union_alias = functools.partial(is_generic_alias, origin=ta.Union)
1312
1311
  is_callable_alias = functools.partial(is_generic_alias, origin=ta.Callable)
1313
1312
 
1314
1313
 
1315
1314
  ##
1316
1315
 
1317
1316
 
1317
+ _UNION_ALIAS_ORIGINS = frozenset([
1318
+ ta.get_origin(ta.Optional[int]),
1319
+ *(
1320
+ [
1321
+ ta.get_origin(int | None),
1322
+ ta.get_origin(getattr(ta, 'TypeVar')('_T') | None),
1323
+ ] if sys.version_info >= (3, 10) else ()
1324
+ ),
1325
+ ])
1326
+
1327
+
1328
+ def is_union_alias(obj: ta.Any) -> bool:
1329
+ return ta.get_origin(obj) in _UNION_ALIAS_ORIGINS
1330
+
1331
+
1332
+ #
1333
+
1334
+
1318
1335
  def is_optional_alias(spec: ta.Any) -> bool:
1319
1336
  return (
1320
- isinstance(spec, _GENERIC_ALIAS_TYPES) and # noqa
1321
- ta.get_origin(spec) is ta.Union and
1337
+ is_union_alias(spec) and
1322
1338
  len(ta.get_args(spec)) == 2 and
1323
1339
  any(a in (None, type(None)) for a in ta.get_args(spec))
1324
1340
  )
@@ -2441,6 +2457,7 @@ def _get_argparse_arg_ann_kwargs(ann: ta.Any) -> ta.Mapping[str, ta.Any]:
2441
2457
  class _ArgparseCliAnnotationBox:
2442
2458
  def __init__(self, annotations: ta.Mapping[str, ta.Any]) -> None:
2443
2459
  super().__init__()
2460
+
2444
2461
  self.__annotations__ = annotations # type: ignore
2445
2462
 
2446
2463
 
@@ -2731,24 +2731,40 @@ _GENERIC_ALIAS_TYPES = (
2731
2731
  )
2732
2732
 
2733
2733
 
2734
- def is_generic_alias(obj, *, origin: ta.Any = None) -> bool:
2734
+ def is_generic_alias(obj: ta.Any, *, origin: ta.Any = None) -> bool:
2735
2735
  return (
2736
2736
  isinstance(obj, _GENERIC_ALIAS_TYPES) and
2737
2737
  (origin is None or ta.get_origin(obj) is origin)
2738
2738
  )
2739
2739
 
2740
2740
 
2741
- is_union_alias = functools.partial(is_generic_alias, origin=ta.Union)
2742
2741
  is_callable_alias = functools.partial(is_generic_alias, origin=ta.Callable)
2743
2742
 
2744
2743
 
2745
2744
  ##
2746
2745
 
2747
2746
 
2747
+ _UNION_ALIAS_ORIGINS = frozenset([
2748
+ ta.get_origin(ta.Optional[int]),
2749
+ *(
2750
+ [
2751
+ ta.get_origin(int | None),
2752
+ ta.get_origin(getattr(ta, 'TypeVar')('_T') | None),
2753
+ ] if sys.version_info >= (3, 10) else ()
2754
+ ),
2755
+ ])
2756
+
2757
+
2758
+ def is_union_alias(obj: ta.Any) -> bool:
2759
+ return ta.get_origin(obj) in _UNION_ALIAS_ORIGINS
2760
+
2761
+
2762
+ #
2763
+
2764
+
2748
2765
  def is_optional_alias(spec: ta.Any) -> bool:
2749
2766
  return (
2750
- isinstance(spec, _GENERIC_ALIAS_TYPES) and # noqa
2751
- ta.get_origin(spec) is ta.Union and
2767
+ is_union_alias(spec) and
2752
2768
  len(ta.get_args(spec)) == 2 and
2753
2769
  any(a in (None, type(None)) for a in ta.get_args(spec))
2754
2770
  )
@@ -3151,6 +3167,16 @@ class Func3(ta.Generic[A0, A1, A2, T]):
3151
3167
  return self.fn(a0, a1, a2)
3152
3168
 
3153
3169
 
3170
+ ##
3171
+
3172
+
3173
+ _TYPING_ANNOTATIONS_ATTR = '__annotate__' if sys.version_info >= (3, 14) else '__annotations__'
3174
+
3175
+
3176
+ def typing_annotations_attr() -> str:
3177
+ return _TYPING_ANNOTATIONS_ATTR
3178
+
3179
+
3154
3180
  ########################################
3155
3181
  # ../../../omlish/logs/filters.py
3156
3182
 
@@ -4233,6 +4259,7 @@ def _get_argparse_arg_ann_kwargs(ann: ta.Any) -> ta.Mapping[str, ta.Any]:
4233
4259
  class _ArgparseCliAnnotationBox:
4234
4260
  def __init__(self, annotations: ta.Mapping[str, ta.Any]) -> None:
4235
4261
  super().__init__()
4262
+
4236
4263
  self.__annotations__ = annotations # type: ignore
4237
4264
 
4238
4265
 
@@ -6024,32 +6051,32 @@ class ObjMarshalerManager:
6024
6051
  [e] = ta.get_args(ty)
6025
6052
  return IterableObjMarshaler(st, rec(e))
6026
6053
 
6027
- if is_union_alias(ty):
6028
- uts = frozenset(ta.get_args(ty))
6029
- if None in uts or type(None) in uts:
6030
- is_opt = True
6031
- uts = frozenset(ut for ut in uts if ut not in (None, type(None)))
6032
- else:
6033
- is_opt = False
6054
+ if is_union_alias(ty):
6055
+ uts = frozenset(ta.get_args(ty))
6056
+ if None in uts or type(None) in uts:
6057
+ is_opt = True
6058
+ uts = frozenset(ut for ut in uts if ut not in (None, type(None)))
6059
+ else:
6060
+ is_opt = False
6034
6061
 
6035
- um: ObjMarshaler
6036
- if not uts:
6037
- raise TypeError(ty)
6038
- elif len(uts) == 1:
6039
- um = rec(check.single(uts))
6062
+ um: ObjMarshaler
6063
+ if not uts:
6064
+ raise TypeError(ty)
6065
+ elif len(uts) == 1:
6066
+ um = rec(check.single(uts))
6067
+ else:
6068
+ pt = tuple({ut for ut in uts if ut in _OBJ_MARSHALER_PRIMITIVE_TYPES})
6069
+ np_uts = {ut for ut in uts if ut not in _OBJ_MARSHALER_PRIMITIVE_TYPES}
6070
+ if not np_uts:
6071
+ um = PrimitiveUnionObjMarshaler(pt)
6072
+ elif len(np_uts) == 1:
6073
+ um = PrimitiveUnionObjMarshaler(pt, x=rec(check.single(np_uts)))
6040
6074
  else:
6041
- pt = tuple({ut for ut in uts if ut in _OBJ_MARSHALER_PRIMITIVE_TYPES})
6042
- np_uts = {ut for ut in uts if ut not in _OBJ_MARSHALER_PRIMITIVE_TYPES}
6043
- if not np_uts:
6044
- um = PrimitiveUnionObjMarshaler(pt)
6045
- elif len(np_uts) == 1:
6046
- um = PrimitiveUnionObjMarshaler(pt, x=rec(check.single(np_uts)))
6047
- else:
6048
- raise TypeError(ty)
6075
+ raise TypeError(ty)
6049
6076
 
6050
- if is_opt:
6051
- um = OptionalObjMarshaler(um)
6052
- return um
6077
+ if is_opt:
6078
+ um = OptionalObjMarshaler(um)
6079
+ return um
6053
6080
 
6054
6081
  raise TypeError(ty)
6055
6082
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: omdev
3
- Version: 0.0.0.dev401
3
+ Version: 0.0.0.dev403
4
4
  Summary: omdev
5
5
  Author: wrmsr
6
6
  License-Expression: BSD-3-Clause
@@ -14,7 +14,7 @@ Classifier: Programming Language :: Python :: 3.13
14
14
  Requires-Python: >=3.13
15
15
  Description-Content-Type: text/markdown
16
16
  License-File: LICENSE
17
- Requires-Dist: omlish==0.0.0.dev401
17
+ Requires-Dist: omlish==0.0.0.dev403
18
18
  Provides-Extra: all
19
19
  Requires-Dist: black~=25.1; extra == "all"
20
20
  Requires-Dist: pycparser~=2.22; extra == "all"
@@ -115,7 +115,7 @@ omdev/cli/clicli.py,sha256=TZnQYHyyh97B6N_pVYYduYgt03s8Yp5mrJ7wblXWSWY,6308
115
115
  omdev/cli/install.py,sha256=oB34AOwu07sqEztW_z5mgorAFoP_Tw556XiTPj2WSM0,4904
116
116
  omdev/cli/main.py,sha256=eUvc64Wi6ROcSG7V_yzrmhpY2CgR12cyz9eJGXE0xlI,6885
117
117
  omdev/cli/managers.py,sha256=BV98_n30Jj63OJrFgRoVZRfICxMLXEZKoEn4rMj9LV4,1160
118
- omdev/cli/types.py,sha256=SH88B81otsSYNM-PM3Ry1wgLLvyg2M6fBJkWOajWIWM,485
118
+ omdev/cli/types.py,sha256=zRSq-SVr43zhXs8dTgkpD9kot9iOFJB8KzfEUnNE7_0,500
119
119
  omdev/clipboard/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
120
  omdev/clipboard/clipboard.py,sha256=9HFpcijpn0XDTI89ZRm2WA1G7O4HsTdVXZHqMULu3N0,1630
121
121
  omdev/clipboard/darwin_cf.py,sha256=LhJ9aB_tpXBltOTo2e8687g6D8bQIV9Q7eAIP_NHb64,4821
@@ -181,7 +181,7 @@ omdev/magic/prepare.py,sha256=SEOK-bl4zDxq0aphYXsEI-hCjbkV908VNnJt-dk0kL4,594
181
181
  omdev/magic/styles.py,sha256=6LAL7XR3fkkH2rh-8nwUvdCYVHBkQxCfP0oEuPuw1Bg,670
182
182
  omdev/manifests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
183
  omdev/manifests/__main__.py,sha256=JqyVDyV7_jo-NZ3wSs5clDU_xCMlxzJv-XFohoZWQ7E,174
184
- omdev/manifests/_dumping.py,sha256=RyphKkXhTnb8zWqcWjAR-GN8vNbBM9-PrZ3fJEvF1RE,44230
184
+ omdev/manifests/_dumping.py,sha256=9wNzlpEn5O9aI7Y9Y1klEmRmJzGJ3EauC5Q85YlrcK4,44356
185
185
  omdev/manifests/building.py,sha256=O-SBzMfqXAfLVunQJ29fzV6zCaMrrM3lVpf7iFHCxuM,13568
186
186
  omdev/manifests/dumping.py,sha256=WF911eYL3LT6powrQT3w83XIM_RdExDgTSsGiNomSIo,4506
187
187
  omdev/manifests/main.py,sha256=mYb8iM5bdwaO8jSd9_hIBSoYLf2h7e0iLb9aCCbgJ6c,2175
@@ -270,9 +270,9 @@ omdev/pyproject/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
270
270
  omdev/pyproject/resources/docker-dev.sh,sha256=DHkz5D18jok_oDolfg2mqrvGRWFoCe9GQo04dR1czcc,838
271
271
  omdev/pyproject/resources/python.sh,sha256=rFaN4SiJ9hdLDXXsDTwugI6zsw6EPkgYMmtacZeTbvw,749
272
272
  omdev/scripts/__init__.py,sha256=MKCvUAEQwsIvwLixwtPlpBqmkMXLCnjjXyAXvVpDwVk,91
273
- omdev/scripts/ci.py,sha256=0a_DmI9q44dl9wvE64IvJwbMICVFC0O5cj3LCZC5EJs,362536
274
- omdev/scripts/interp.py,sha256=2xNG-ObiPC-F5eV_nTHq2u-V3Hyuo_6KblPFCBhm2mA,158487
275
- omdev/scripts/pyproject.py,sha256=DL5q2gsnGChTTuzSHn1PprW2kl3ti_K60JXnKLZdA40,269992
273
+ omdev/scripts/ci.py,sha256=9amwcmO6M05Ek8x8hZp8SQa2Wmn7p1PTRAkkcFzeLmI,362663
274
+ omdev/scripts/interp.py,sha256=8FR5-a95K1bL7YHNBiX1XVDPYhqw_jTWz8mVNDts6pI,158710
275
+ omdev/scripts/pyproject.py,sha256=qgAW607OVKaeGma7XuxzyhuFyJLoKIcT9nZ52cl3KKU,270298
276
276
  omdev/scripts/slowcat.py,sha256=lssv4yrgJHiWfOiHkUut2p8E8Tq32zB-ujXESQxFFHY,2728
277
277
  omdev/scripts/tmpexec.py,sha256=WTYcf56Tj2qjYV14AWmV8SfT0u6Y8eIU6cKgQRvEK3c,1442
278
278
  omdev/tokens/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -321,9 +321,9 @@ omdev/tools/jsonview/resources/jsonview.js,sha256=faDvXDOXKvEvjOuIlz4D3F2ReQXb_b
321
321
  omdev/tools/pawk/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
322
322
  omdev/tools/pawk/__main__.py,sha256=VCqeRVnqT1RPEoIrqHFSu4PXVMg4YEgF4qCQm90-eRI,66
323
323
  omdev/tools/pawk/pawk.py,sha256=ao5mdrpiSU4AZ8mBozoEaV3UVlmVTnRG9wD9XP70MZE,11429
324
- omdev-0.0.0.dev401.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
325
- omdev-0.0.0.dev401.dist-info/METADATA,sha256=RLScNFrnOubL8SappIzdHqIWaA3uKwZ8kK0S_5o3XrA,5094
326
- omdev-0.0.0.dev401.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
327
- omdev-0.0.0.dev401.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
328
- omdev-0.0.0.dev401.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
329
- omdev-0.0.0.dev401.dist-info/RECORD,,
324
+ omdev-0.0.0.dev403.dist-info/licenses/LICENSE,sha256=B_hVtavaA8zCYDW99DYdcpDLKz1n3BBRjZrcbv8uG8c,1451
325
+ omdev-0.0.0.dev403.dist-info/METADATA,sha256=ilWFWwezMzIvBE3z16V9e_7s9VSH7Q3LaJaX4YuRyrk,5094
326
+ omdev-0.0.0.dev403.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
327
+ omdev-0.0.0.dev403.dist-info/entry_points.txt,sha256=dHLXFmq5D9B8qUyhRtFqTGWGxlbx3t5ejedjrnXNYLU,33
328
+ omdev-0.0.0.dev403.dist-info/top_level.txt,sha256=1nr7j30fEWgLYHW3lGR9pkdHkb7knv1U1ES1XRNVQ6k,6
329
+ omdev-0.0.0.dev403.dist-info/RECORD,,