Merge pull request #97 from microsoft/omri/poetry_updates

added jupyter and matplotlib to dev deps
This commit is contained in:
Omri Mendels 2024-02-11 16:25:16 +02:00 коммит произвёл GitHub
Родитель 70a22e0c2f 14121a69e2
Коммит 33a3ee077b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 5 добавлений и 6 удалений

Просмотреть файл

@ -33,15 +33,12 @@ To install the package:
2. Install all dependencies, preferably in a virtual environment:
``` sh
# Create conda env (optional)
conda create --name presidio python=3.9
conda activate presidio
# Install package+dependencies
pip install poetry
poetry install
poetry install --with=dev
# To install with all additional NER dependencies (e.g. Flair, Stanza, CRF), run:
# poetry install --with ner
# poetry install --with='ner,dev'
# Download a spaCy model used by presidio-analyzer
python -m spacy download en_core_web_lg

Просмотреть файл

@ -39,6 +39,8 @@ spacy_huggingface_pipelines = "^0.0.4"
pytest = ">=6.*"
flake8 = ">=3.*"
pytest-azurepipelines = "^1.0.5"
jupyter = "^1.0.0"
matplotlib = "^3.4.3"
[build-system]
requires = ["poetry-core"]