-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c25d4fd
commit b9d1a7c
Showing
38 changed files
with
411 additions
and
430 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
API-Doc | ||
======= | ||
|
||
.. autofunction:: ecl_data_io.lazy_read | ||
.. autofunction:: resfo.lazy_read | ||
|
||
.. autofunction:: ecl_data_io.read | ||
.. autofunction:: resfo.read | ||
|
||
.. autofunction:: ecl_data_io.write | ||
.. autofunction:: resfo.write | ||
|
||
.. autoclass:: ecl_data_io.Format | ||
.. autoclass:: resfo.Format | ||
|
||
.. autoclass:: ecl_data_io.MESS | ||
.. autoclass:: resfo.MESS | ||
|
||
.. autoclass:: ecl_data_io.array_entry.EclArray | ||
.. autoclass:: resfo.array_entry.ResArray | ||
:exclude-members: is_eof, parse | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
project = "ecl-data-io" | ||
project = "resfo" | ||
copyright = "2022, Equinor" | ||
author = "Equinor" | ||
release = "1.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
Building from source and running the tests | ||
========================================== | ||
|
||
ecl-data-io is set up to use tox which can simplify development, | ||
resfo is set up to use tox which can simplify development, | ||
but all that is necessary in order to get started is git, pip and python: | ||
|
||
First, install ecl-data-io in editable mode: | ||
First, install resfo in editable mode: | ||
|
||
.. code-block:: console | ||
git clone [email protected]:equinor/ecl-data-io.git | ||
cd ecl-data-io | ||
git clone [email protected]:equinor/resfo.git | ||
cd resfo | ||
pip install -e . | ||
Second, install the dev-requirements.txt, which contains the packages ecl-data-io | ||
Second, install the dev-requirements.txt, which contains the packages resfo | ||
require in order to run tests: | ||
|
||
.. code-block:: console | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
import ecl_data_io.version | ||
import resfo.version | ||
|
||
from .errors import EclParsingError, EclWriteError | ||
from .errors import ResfoParsingError, ResfoWriteError | ||
from .format import Format | ||
from .read import lazy_read, read | ||
from .types import MESS | ||
|
@@ -9,14 +9,14 @@ | |
__author__ = "Equinor" | ||
__email__ = "[email protected]" | ||
|
||
__version__ = ecl_data_io.version.version | ||
__version__ = resfo.version.version | ||
|
||
__all__ = [ | ||
"read", | ||
"lazy_read", | ||
"write", | ||
"Format", | ||
"MESS", | ||
"EclParsingError", | ||
"EclWriteError", | ||
"ResfoParsingError", | ||
"ResfoWriteError", | ||
] |
4 changes: 2 additions & 2 deletions
4
src/ecl_data_io/_formatted/__init__.py → src/resfo/_formatted/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
""" | ||
This module implements the read and write | ||
functionality for formatted ecl files (see | ||
functionality for formatted res files (see | ||
:ref:`formatted-format`) and is | ||
not part of the ecl-data-io public API. | ||
not part of the resfo public API. | ||
""" |
Oops, something went wrong.