Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update urls after the repo move #68

Merged
merged 1 commit into from
May 9, 2024
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

![PyPI - Python Version](https://img.shields.io/pypi/pyversions/hpo-toolkit)
![PyPi downloads](https://img.shields.io/pypi/dm/hpo-toolkit.svg?label=Pypi%20downloads)
![Build status](https://img.shields.io/github/actions/workflow/status/TheJacksonLaboratory/hpo-toolkit/python_ci.yml)
[![GitHub release](https://img.shields.io/github/release/TheJacksonLaboratory/hpo-toolkit.svg)](https://github.com/TheJacksonLaboratory/hpo-toolkit/releases)
![Build status](https://img.shields.io/github/actions/workflow/status/ielis/hpo-toolkit/python_ci.yml)
[![GitHub release](https://img.shields.io/github/release/ielis/hpo-toolkit.svg)](https://github.com/ielis/hpo-toolkit/releases)

A toolkit for working with Human Phenotype Ontology (HPO) and HPO disease annotations in Python.

Expand Down Expand Up @@ -39,5 +39,5 @@ You got yourself phenotype annotations of 12,468 rare diseases.

Find more info in our detailed documentation:

- [Stable documentation](https://thejacksonlaboratory.github.io/hpo-toolkit/stable) (last release on `main` branch)
- [Latest documentation](https://thejacksonlaboratory.github.io/hpo-toolkit/latest) (bleeding edge, latest commit on `development` branch)
- [Stable documentation](https://ielis.github.io/hpo-toolkit/stable) (last release on `main` branch)
- [Latest documentation](https://ielis.github.io/hpo-toolkit/latest) (bleeding edge, latest commit on `development` branch)
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ Feedback
--------

The best place to leave feedback, ask questions, and report bugs is the
`HPO Toolkit's Issue Tracker <https://github.com/TheJacksonLaboratory/hpo-toolkit/issues>`_.
`HPO Toolkit's Issue Tracker <https://github.com/ielis/hpo-toolkit/issues>`_.

4 changes: 2 additions & 2 deletions docs/setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The bleeding edge code

To access the bleeding edge features, the development version can be installed by::

git clone https://github.com/TheJacksonLaboratory/hpo-toolkit.git
git clone https://github.com/ielis/hpo-toolkit.git
cd hpo-toolkit
git checkout development && git pull
python3 -m pip install .
Expand Down Expand Up @@ -49,7 +49,7 @@ Run benches
Bench suites provide an idea about the performance of the library.
Running a bench requires checking out the GitHub repository and installing HPO toolkit with `bench` dependencies::

git clone https://github.com/TheJacksonLaboratory/hpo-toolkit.git
git clone https://github.com/ielis/hpo-toolkit.git
cd hpo-toolkit
python3 -m pip install .[bench]

Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ bench = [
]

[project.urls]
"Repository" = "https://github.com/TheJacksonLaboratory/hpo-toolkit"
homepage = "https://github.com/ielis/hpo-toolkit"
repository = "https://github.com/ielis/hpo-toolkit.git"
documentation = "https://ielis.github.io/hpo-toolkit/stable"
bugtracker = "https://github.com/ielis/hpo-toolkit/issues"

[tool.setuptools]
package-dir = { "" = "src" }
Expand Down
Loading