From 9bba0935f48a824e421ad45d28e6a2d83845b6bb Mon Sep 17 00:00:00 2001 From: Cas Wognum Date: Tue, 7 May 2024 21:17:42 -0400 Subject: [PATCH] Update README.md --- README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6dde3a1..aa9e42c 100644 --- a/README.md +++ b/README.md @@ -32,4 +32,58 @@ curator = Curator( # Run the curation dataset, report = curator(dataset) -``` \ No newline at end of file +``` + +## Documentation + +Please refer to the [documentation](https://polaris-hub.github.io/polaris/), which contains tutorials for getting started with `polaris` and detailed descriptions of the functions provided. + +## Installation + +You can install `polaris` using conda/mamba/micromamba: + +```bash +conda install -c conda-forge auroris +``` + +You can also use pip: + +```bash +pip install auroris +``` + +## Development lifecycle + +### Setup dev environment + +```shell +conda env create -n auroris -f env.yml +conda activate auroris + +pip install --no-deps -e . +``` + +
+ Other installation options + + Alternatively, using [uv](https://github.com/astral-sh/uv): + ```shell + uv venv -p 3.12 auroris + source .venv/auroris/bin/activate + uv pip compile pyproject.toml -o requirements.txt --all-extras + uv pip install -r requirements.txt + ``` +
+ + +### Tests + +You can run tests locally with: + +```shell +pytest +``` + +## License + +Under the Apache-2.0 license. See [LICENSE](LICENSE).