Skip to content

Commit

Permalink
last fixes - release ready
Browse files Browse the repository at this point in the history
  • Loading branch information
schuhmaj committed Apr 18, 2024
1 parent 0554f40 commit f2cadb8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The evaluation of the polyhedral gravity model requires the following parameters
| Constant Density $\rho$ |

The mesh and the constants density's unit must match.
Have a look the documentation to view the [supported mesh files](https://esa.github.io/polyhedral-gravity-model/supported_input.html).
Have a look the documentation to view the [supported mesh files](https://esa.github.io/polyhedral-gravity-model/quickstart/supported_input.html).

### Output

Expand Down Expand Up @@ -337,7 +337,7 @@ found in this repository in the folder `/example-config/`.

The configuration should look similar to the given example below.
It is required to specify the source-files of the polyhedron's mesh (more info
about the supported file in the [previous paragraph](#supported-polyhedron-source-files-python-c)), the density
about the supported file in the [documentation](https://esa.github.io/polyhedral-gravity-model/quickstart/supported_input.html)), the density
of the polyhedron, and the wished computation points where the
gravity tensor shall be computed.
Further one must specify the name of the .csv output file.
Expand Down
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@ def build_extension(self, ext):
# -----------------------------------------------------------------------------------------


picture_in_readme = '''<p align="center">
<img src="paper/figures/eros_010.png" width="50%">
<br>
<em>
<a href="https://github.com/gomezzz/geodesyNets/blob/master/3dmeshes/eros_lp.pk">Mesh of (433) Eros</a> with 739 vertices and 1474 faces
</em>
</p>'''


# --------------------------------------------------------------------------------
# Modify these entries to customize the package metadata of the polyhedral gravity
# --------------------------------------------------------------------------------
Expand All @@ -170,7 +179,7 @@ def build_extension(self, ext):
author_email="[email protected]",
description="Package to compute full gravity tensor of a given constant density polyhedron for arbitrary points "
"according to the geodetic convention",
long_description=open("README.md").read(),
long_description=open("README.md").read().replace(picture_in_readme, ''),
long_description_content_type="text/markdown",
ext_modules=[CMakeExtension("polyhedral_gravity")],
cmdclass={"build_ext": CMakeBuild},
Expand Down

0 comments on commit f2cadb8

Please sign in to comment.