tnfr 3.0.0__py3-none-any.whl → 3.0.1__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.

Potentially problematic release.


This version of tnfr might be problematic. Click here for more details.

tnfr/__init__.py CHANGED
@@ -1,48 +1,58 @@
1
1
  from __future__ import annotations
2
-
3
2
  """
4
3
  TNFR — Teoría de la Naturaleza Fractal Resonante
5
- API canónica del paquete.
4
+ API pública del paquete.
6
5
 
7
6
  Principio operativo (ecuación nodal):
8
7
  ∂EPI/∂t = νf · ΔNFR(t)
9
8
 
10
- Este paquete expone utilidades para preparar una red (preparar_red),
11
- ejecutar la dinámica (step, run) y observar coherencia (coherencia_global,
12
- orden_kuramoto), alineado con la TNFR.
9
+ Re-exporta:
10
+ - preparar_red
11
+ - step, run, set_delta_nfr_hook
12
+ - attach_standard_observer, coherencia_global, orden_kuramoto
13
13
  """
14
14
 
15
- __version__ = "3.0.0"
15
+ __version__ = "3.0.1"
16
16
 
17
- # Re-exports de la API pública
18
- from .ontosim import preparar_red
17
+ # -------------------------------------------------------------------
18
+ # 1) Registrar alias ANTES de importar submódulos que usan imports
19
+ # absolutos (p.ej. `from constants import DEFAULTS`)
20
+ # -------------------------------------------------------------------
21
+ import sys as _sys
22
+
23
+ from . import constants as _constants
24
+ from . import helpers as _helpers
25
+ from . import operators as _operators
26
+ from . import observers as _observers
27
+
28
+ _sys.modules.setdefault("constants", _constants)
29
+ _sys.modules.setdefault("helpers", _helpers)
30
+ _sys.modules.setdefault("operators", _operators)
31
+ _sys.modules.setdefault("observers", _observers)
32
+
33
+ # -------------------------------------------------------------------
34
+ # 2) Ahora sí: importar módulos que dependen de esos alias
35
+ # -------------------------------------------------------------------
19
36
  from .dynamics import step, run, set_delta_nfr_hook
37
+ from .ontosim import preparar_red
20
38
  from .observers import attach_standard_observer, coherencia_global, orden_kuramoto
21
39
 
40
+ # (opcional) exponer también alias para `dynamics` y `ontosim`
41
+ # si algún código externo hace `from dynamics import run`, etc.
42
+ import types as _types
43
+ import importlib as _importlib
44
+
45
+ _dynamics_mod = _importlib.import_module(__name__ + ".dynamics")
46
+ _ontosim_mod = _importlib.import_module(__name__ + ".ontosim")
47
+ _sys.modules.setdefault("dynamics", _dynamics_mod)
48
+ _sys.modules.setdefault("ontosim", _ontosim_mod)
49
+
50
+ # -------------------------------------------------------------------
51
+ # 3) API pública
52
+ # -------------------------------------------------------------------
22
53
  __all__ = [
23
54
  "preparar_red",
24
55
  "step", "run", "set_delta_nfr_hook",
25
56
  "attach_standard_observer", "coherencia_global", "orden_kuramoto",
26
57
  "__version__",
27
58
  ]
28
-
29
- # --- Adaptador de imports internos (compatibilidad sin tocar tus módulos) ---
30
- # Varios archivos del paquete usan imports absolutos como:
31
- # from constants import DEFAULTS
32
- # en lugar de imports relativos:
33
- # from .constants import DEFAULTS
34
- # Para no reescribirlos, registramos alias en sys.modules.
35
- import sys as _sys
36
- from . import constants as _constants
37
- from . import helpers as _helpers
38
- from . import observers as _observers
39
- from . import dynamics as _dynamics
40
- from . import operators as _operators
41
- from . import ontosim as _ontosim
42
-
43
- _sys.modules.setdefault("constants", _constants)
44
- _sys.modules.setdefault("helpers", _helpers)
45
- _sys.modules.setdefault("observers", _observers)
46
- _sys.modules.setdefault("dynamics", _dynamics)
47
- _sys.modules.setdefault("operators", _operators)
48
- _sys.modules.setdefault("ontosim", _ontosim)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tnfr
3
- Version: 3.0.0
3
+ Version: 3.0.1
4
4
  Summary: TNFR canónica: dinámica glífica modular sobre redes.
5
5
  Author: Fer
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- tnfr/__init__.py,sha256=5djYn7YqfpOWrakVqJIBNqllDhTAe8xbo682SPC5rbc,1650
1
+ tnfr/__init__.py,sha256=KFOkKW99ZQR_czFQ2oyWf3fEGFPBOXXZIs6HLtbAPfc,2135
2
2
  tnfr/constants.py,sha256=_775sPHussR9vgkWRCLC6dzwgk_1_lLnSlWT8sBWR3U,7677
3
3
  tnfr/dynamics.py,sha256=7B38c9SVKLVFBrKHeJ1nXbghoRHfDs8Nl9CqUmCcAyI,23260
4
4
  tnfr/helpers.py,sha256=tZJsDXc8k9HIfg8BA9cVUEFKBoX1Rfnuhurl2Fvxsy0,6017
@@ -6,8 +6,8 @@ tnfr/main.py,sha256=TEngteuC9MD7Ec9bNGuCC9ym-2ohbh202-HGArCR4tk,1506
6
6
  tnfr/observers.py,sha256=MoC-xLJuMP-UYj8cpIVlgSbXDsE1Uj70Zy51PSH3AJY,5192
7
7
  tnfr/ontosim.py,sha256=U0IeNVF8rFNhnmWWux91xDc0djTDZQkqRRosP6Z7FmE,5485
8
8
  tnfr/operators.py,sha256=M6ahJL8IuB2y4qiEalge5EufCz0eEbhw-O4xfh3NpwE,12146
9
- tnfr-3.0.0.dist-info/licenses/LICENSE.txt,sha256=xTjBNhy3N8pomFljrCkD1d34SmAEWv8hyJMMOjNMH0M,1071
10
- tnfr-3.0.0.dist-info/METADATA,sha256=RP4ob4z-WMs8TeNV58to9266xivZh3gq5kHYsJZ--G8,1325
11
- tnfr-3.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- tnfr-3.0.0.dist-info/top_level.txt,sha256=Q2HJnvc5Rt2VHwVvyBTnNPT4SfmJWnCj7XUxxEvQa7c,5
13
- tnfr-3.0.0.dist-info/RECORD,,
9
+ tnfr-3.0.1.dist-info/licenses/LICENSE.txt,sha256=xTjBNhy3N8pomFljrCkD1d34SmAEWv8hyJMMOjNMH0M,1071
10
+ tnfr-3.0.1.dist-info/METADATA,sha256=llsEctHecy9-uddgAq6Xw7CmJrwRamSH0bZ4Ov95Q28,1325
11
+ tnfr-3.0.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ tnfr-3.0.1.dist-info/top_level.txt,sha256=Q2HJnvc5Rt2VHwVvyBTnNPT4SfmJWnCj7XUxxEvQa7c,5
13
+ tnfr-3.0.1.dist-info/RECORD,,
File without changes