Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing link to test_main.py #13

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/_sources/examples.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ to generate the animation (using ResInsight) in the :doc:`introduction section <
Generic (under development)
---------------------------

See/run the last lines (34 to 42) in the `test_main.py <https://github.com/cssr-tools/expreccs/blob/main/pyproject.toml>`_
See/run the last lines (34 to 42) in the `test_main.py <https://github.com/cssr-tools/expreccs/blob/main/tests/test_main.py>`_
for an example where **expreccs** is used in two given models (regional and site, in this case they are created using
the **expreccs** package, but in general can be any given geological models), generating a new input deck where
the pressures are projected.
Expand Down
2 changes: 1 addition & 1 deletion docs/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ <h2>Example 2<a class="headerlink" href="#example-2" title="Link to this heading
</section>
<section id="generic-under-development">
<h2>Generic (under development)<a class="headerlink" href="#generic-under-development" title="Link to this heading"></a></h2>
<p>See/run the last lines (34 to 42) in the <a class="reference external" href="https://github.com/cssr-tools/expreccs/blob/main/pyproject.toml">test_main.py</a>
<p>See/run the last lines (34 to 42) in the <a class="reference external" href="https://github.com/cssr-tools/expreccs/blob/main/tests/test_main.py">test_main.py</a>
for an example where <strong>expreccs</strong> is used in two given models (regional and site, in this case they are created using
the <strong>expreccs</strong> package, but in general can be any given geological models), generating a new input deck where
the pressures are projected.</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/text/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ to generate the animation (using ResInsight) in the :doc:`introduction section <
Generic (under development)
---------------------------

See/run the last lines (34 to 42) in the `test_main.py <https://github.com/cssr-tools/expreccs/blob/main/pyproject.toml>`_
See/run the last lines (34 to 42) in the `test_main.py <https://github.com/cssr-tools/expreccs/blob/main/tests/test_main.py>`_
for an example where **expreccs** is used in two given models (regional and site, in this case they are created using
the **expreccs** package, but in general can be any given geological models), generating a new input deck where
the pressures are projected.
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ build-backend = "setuptools.build_meta"
[project]
name = "expreccs"
description = "A framework to simulate regional and site reservoirs for CO2 storage"
authors = [{ name = "David Landa-Marbán", email = "[email protected]" }]
maintainers = [{ name = "David Landa-Marbán", email = "[email protected]" }]
authors = [{ name = "David Landa-Marbán", email = "[email protected]" },
{ name = "Tor Harald Sandve", email = "[email protected]" }]
maintainers = [{ name = "David Landa-Marbán", email = "[email protected]" },
{ name = "Tor Harald Sandve", email = "[email protected]" }]
version = "2024.04"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "GPL-3.0"}
Expand Down
Loading