Skip to content
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
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ authors = [
{name="Zhang Yunjun", email="yunjunz@outlook.com"},
{name="Dennis Milbert"},
]
readme = "README.md"
requires-python = ">=3.8"

keywords = ["solid Earth tides", "deformation", "geodesy", "geophysics"]
license = {text = "GPL-3.0-or-later"}
classifiers = [
Expand All @@ -25,7 +25,7 @@ classifiers = [
# see section: setuptools_scm
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html#dynamic-metadata
# dependencies will be read from text files
dynamic = ["version", "dependencies", "optional-dependencies"]
dynamic = ["version", "readme", "dependencies", "optional-dependencies"]

[project.urls]
"Homepage" = "https://github.com/insarlab/PySolid"
Expand All @@ -37,6 +37,7 @@ zip-safe = false

[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
readme = { file = ["README.md"], content-type = "text/markdown" }

# extra requirements: `pip install pysolid[docs]` or `pip install .[docs,test]`
# note: the [docs] syntax requires setuptools>=64.0, thus, not working yet.
Expand Down
56 changes: 0 additions & 56 deletions setup.py

This file was deleted.

1 change: 1 addition & 0 deletions src/pysolid/point.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ def plot_solid_earth_tides_point(dt_out, tide_e, tide_n, tide_u, lalo=None,
if lalo:
axs[0].set_title('solid Earth tides at (N{}, E{})'.format(lalo[0], lalo[1]), fontsize=12)
fig.tight_layout()
fig.align_ylabels()

# output
if out_fig:
Expand Down