-
Notifications
You must be signed in to change notification settings - Fork 0
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
7 additions
and
7 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 |
---|---|---|
|
@@ -4,28 +4,28 @@ You can directly use shimmer as a dependency to your project. | |
However, there is no PyPI entry yet, so you will need to install it as a git dependency: | ||
|
||
```sh | ||
pip install git+https://github.com/bdvllrs/shimmer.git@version | ||
pip install git+https://github.com/ruflab/shimmer.git@version | ||
``` | ||
|
||
You can choose to use a specific version | ||
(look at the latest releases: https://github.com/bdvllrs/shimmer/releases) or | ||
(look at the latest releases: https://github.com/ruflab/shimmer/releases) or | ||
use the main branch for latest development: | ||
|
||
```sh | ||
pip install git+https://github.com/bdvllrs/shimmer.git@main | ||
pip install git+https://github.com/ruflab/shimmer.git@main | ||
``` | ||
|
||
You can add the dependency directly in your `requirements.txt`: | ||
``` | ||
shimmer@git+https://github.com/bdvllrs/shimmer.git@main | ||
shimmer@git+https://github.com/ruflab/shimmer.git@main | ||
``` | ||
|
||
Or in your `pyproject.toml` following your package manager instructions. | ||
This project uses [poetry](https://python-poetry.org/). | ||
|
||
Using poetry, you can add: | ||
```toml | ||
shimmer = {git = "[email protected]:bdvllrs/shimmer.git", rev = "main"} | ||
shimmer = {git = "[email protected]:ruflab/shimmer.git", rev = "main"} | ||
``` | ||
|
||
in the `tool.poetry.dependencies` section. | ||
|