mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
* Move case loading commands from Commands to project and case * Major refactor * Fix problems with Python examples * Add ability to export snapshot from just one view + fixup * Case comments and black * Make all modules pass pylint test
12 lines
295 B
Python
12 lines
295 B
Python
name = "rips"
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'generated'))
|
|
|
|
from rips.case import Case
|
|
from rips.grid import Grid
|
|
from rips.instance import Instance
|
|
from rips.pdmobject import PdmObject
|
|
from rips.view import View
|
|
from rips.project import Project |