Skip to content

Commit

Permalink
Fixed typo in description
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmkenney committed Oct 10, 2023
1 parent d287c50 commit 99f5050
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, "pathsimanalysis", "PathSimAnalysis Documentation",
author, "pathsimanalysis", "Calculates the geometric similary of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.",
author, "pathsimanalysis", "Calculates the geometric similarity of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.",
"Miscellaneous"),
]

Expand Down
2 changes: 1 addition & 1 deletion pathsimanalysis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
PathSimAnalysis
Calculates the geometric similary of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.
Calculates the geometric similarity of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.
"""

# Add imports here
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pathsimanalysis"
description = "Calculates the geometric similary of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances."
description = "Calculates the geometric similarity of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances."
license = {file = "LICENSE" }
authors = [
{name = "MDAnalysis", email = "[email protected]"},
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
PathSimAnalysis
Calculates the geometric similary of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.
Calculates the geometric similarity of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.
"""
import os
import sys
Expand All @@ -10,7 +10,7 @@

import versioneer

short_description = "Calculates the geometric similary of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.".strip().split("\n")[0]
short_description = "Calculates the geometric similarity of molecular dynamics trajectories using path metrics such as the Hausdorff and Fréchet distances.".strip().split("\n")[0]

# from https://github.com/pytest-dev/pytest-runner#conditional-requirement
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
Expand Down

0 comments on commit 99f5050

Please sign in to comment.