-
Notifications
You must be signed in to change notification settings - Fork 9
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
Showing
2 changed files
with
12 additions
and
3 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 |
---|---|---|
|
@@ -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 | ||
# -------------------------------------------------------------------------------- | ||
|
@@ -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}, | ||
|