21 lines
714 B
Python
21 lines
714 B
Python
|
|
from ._gridfire import *
|
||
|
|
import sys
|
||
|
|
|
||
|
|
from ._gridfire import type, utils, engine, solver, exceptions, partition, reaction, screening, io, policy
|
||
|
|
|
||
|
|
sys.modules['gridfire.type'] = type
|
||
|
|
sys.modules['gridfire.utils'] = utils
|
||
|
|
sys.modules['gridfire.engine'] = engine
|
||
|
|
sys.modules['gridfire.solver'] = solver
|
||
|
|
sys.modules['gridfire.exceptions'] = exceptions
|
||
|
|
sys.modules['gridfire.partition'] = partition
|
||
|
|
sys.modules['gridfire.reaction'] = reaction
|
||
|
|
sys.modules['gridfire.screening'] = screening
|
||
|
|
sys.modules['gridfire.policy'] = policy
|
||
|
|
sys.modules['gridfire.io'] = io
|
||
|
|
|
||
|
|
__all__ = ['type', 'utils', 'engine', 'solver', 'exceptions', 'partition', 'reaction', 'screening', 'io', 'policy']
|
||
|
|
|
||
|
|
__version__ = "v0.7.0_alpha_2025_10_25"
|
||
|
|
|