Skip to content

Commit

Permalink
Merge pull request #24 from sebhmg/GEOPY-1563
Browse files Browse the repository at this point in the history
GEOPY-1563: plate-simulation: add license terms and list of 3rd party
  • Loading branch information
sebhmg authored Jun 7, 2024
2 parents 38d67ec + cc79a5a commit 2de261a
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 9 deletions.
6 changes: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,11 @@ The use of Third Party Software is governed by the terms of such software licens
Third Party Software notices and/or additional terms and conditions are located in the
`THIRD_PARTY_SOFTWARE.rst`_ file.

.. _THIRD_PARTY_SOFTWARE.rst: THIRD_PARTY_SOFTWARE.rst
.. _THIRD_PARTY_SOFTWARE.rst: docs/source/THIRD_PARTY_SOFTWARE.rst\

Trademarks
^^^^^^^^^^
"Python" and the Python logos are trademarks or registered trademarks of the Python Software Foundation.

Copyright
^^^^^^^^^
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ compatibly licensed. We list these here.
* - `simpeg-drivers <https://github.com/MiraGeoscience/simpeg-drivers>`_
- MIT
- Application to run SimPEG inversions with geoh5 files from Geoscience Analyst
* `threadpoolctl <https://github.com/joblib/threadpoolctl>`_
* - `threadpoolctl <https://github.com/joblib/threadpoolctl>`_
- BSD-3-Clause
- helpers to limit the number of threads used in the threadpool-backed of common native libraries used for scientific computing and data science
* `trimesh <https://trimesh.org/>`_
* - `trimesh <https://trimesh.org/>`_
- MIT
- Python library for loading and using triangular meshes
43 changes: 42 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,49 @@ details are parameterized in a ui.json file that can be rendered in

.. toctree::
:maxdepth: 2
:caption: Contents:
:caption: Table of content

getting_started
usage
methodology
License
Third_Party_Software


License
^^^^^^^
MIT License

Copyright (c) 2024 Mira Geoscience

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Third Party Software
^^^^^^^^^^^^^^^^^^^^
The plate-simulation Software may provide links to third party libraries or code (collectively “Third Party Software”)
to implement various functions. Third Party Software does not comprise part of the Software.
The use of Third Party Software is governed by the terms of such software license(s).
Third Party Software notices and/or additional terms and conditions are located in the
`THIRD_PARTY_SOFTWARE.rst`_ file.

.. _THIRD_PARTY_SOFTWARE.rst: THIRD_PARTY_SOFTWARE.rst

Copyright
^^^^^^^^^
Copyright (c) 2024 Mira Geoscience Ltd.
14 changes: 9 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,15 @@ packages = [
]

include = [
"COPYING",
"COPYING.LESSER",
"LICENSE",
"README.rst",
"THIRD_PARTY_SOFTWARE.rst",
{ path = "COPYING", format = ["sdist", "wheel"] },
{ path = "COPYING.LESSER", format = ["sdist", "wheel"] },
{ path = "LICENSE", format = ["sdist", "wheel"] },
{ path = "README.rst", format = ["sdist", "wheel"] },
{ path = "THIRD_PARTY_SOFTWARE.rst", format = ["sdist", "wheel"] },
{ path = "docs/**/THIRD_PARTY_SOFTWARE.rst", format = ["sdist", "wheel"] },
]

exclude = [
]

[tool.poetry.dependencies]
Expand Down

0 comments on commit 2de261a

Please sign in to comment.