-
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
8666f10
commit 6aff2ba
Showing
4 changed files
with
40 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
API-Doc | ||
======= | ||
|
||
.. autofunction:: ecl_data_io.lazy_read | ||
|
||
.. autofunction:: ecl_data_io.read | ||
|
||
.. autofunction:: ecl_data_io.write | ||
|
||
.. autoclass:: ecl_data_io.Format | ||
|
||
.. autoclass:: ecl_data_io.MESS |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
Building from source and running the tests | ||
========================================== | ||
|
||
ecl-data-io 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: | ||
|
||
.. code-block:: console | ||
git clone [email protected]:equinor/ecl-data-io.git | ||
cd ecl-data-io | ||
pip install -e . | ||
|
||
Second, install the dev-requirements.txt, which contains the packages ecl-data-io | ||
require in order to run tests: | ||
|
||
.. code-block:: console | ||
pip install -r dev-requirements.txt | ||
|
||
At last, you can use pytest to run the tests | ||
|
||
.. code-block:: console | ||
pytest tests |
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