├── LICENSE ├── MANIFEST.in ├── README.rst ├── example ├── example.ipynb ├── reservoir_properties_list.csv └── testGppeval.py ├── gppeval ├── __init__.py ├── __pycache__ │ └── __init__.cpython-310.pyc └── example │ ├── example.ipynb │ └── reservoir_properties_list.csv └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/README.rst -------------------------------------------------------------------------------- /example/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/example/example.ipynb -------------------------------------------------------------------------------- /example/reservoir_properties_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/example/reservoir_properties_list.csv -------------------------------------------------------------------------------- /example/testGppeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/example/testGppeval.py -------------------------------------------------------------------------------- /gppeval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/gppeval/__init__.py -------------------------------------------------------------------------------- /gppeval/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/gppeval/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /gppeval/example/example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/gppeval/example/example.ipynb -------------------------------------------------------------------------------- /gppeval/example/reservoir_properties_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/gppeval/example/reservoir_properties_list.csv -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cpocasangre/gppeval/HEAD/setup.py --------------------------------------------------------------------------------