mirror of
https://github.com/ilri/csv-metadata-quality.git
synced 2025-05-11 07:36:01 +02:00
Use uv instead of rye
This commit is contained in:
12
README.md
12
README.md
@ -33,22 +33,22 @@ If you use the DSpace CSV metadata quality checker please cite:
|
||||
- [Normalize DOIs](https://www.crossref.org/documentation/member-setup/constructing-your-dois/) to https://doi.org URI format
|
||||
|
||||
## Installation
|
||||
The easiest way to install CSV Metadata Quality is with [poetry](https://python-poetry.org):
|
||||
The easiest way to install CSV Metadata Quality is with [uv](https://docs.astral.sh/uv/):
|
||||
|
||||
```
|
||||
$ git clone https://github.com/ilri/csv-metadata-quality.git
|
||||
$ cd csv-metadata-quality
|
||||
$ poetry install
|
||||
$ poetry shell
|
||||
$ uv sync
|
||||
$ source .venv/bin/activate
|
||||
```
|
||||
|
||||
Otherwise, if you don't have poetry, you can use a vanilla Python virtual environment:
|
||||
Otherwise, if you don't have uv, you can use a vanilla Python virtual environment:
|
||||
|
||||
```
|
||||
$ git clone https://github.com/ilri/csv-metadata-quality.git
|
||||
$ cd csv-metadata-quality
|
||||
$ python3 -m venv venv
|
||||
$ source venv/bin/activate
|
||||
$ python3 -m venv .venv
|
||||
$ source .venv/bin/activate
|
||||
$ pip install -r requirements.txt
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user