From 8c629d70feb5aeea60b929267a32b58ec769df77 Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Sun, 2 Jul 2023 15:14:00 +0200
Subject: [PATCH] doc: Improve first installation step (#155)

Suggest to add it to Py Dev Env
---
 README.md | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 33ec94c..f816e83 100644
--- a/README.md
+++ b/README.md
@@ -51,10 +51,13 @@ sudo apt install python3-pip python3-dev python3-wheel libsodium23
 
 You can install DuniterPy and its dependencies with following command:
 
-```bash
-pip3 install duniterpy --user
+```sh
+pip install --user duniterpy
 ```
 
+Once you want to add DuniterPy to your Python project, you can add it as a dependency to your Python development environment: `pyproject.toml`, `requirements.txt`, `setup.py`.
+We recommend [Poetry](https://python-poetry.org) usage.
+
 ## Install the development environment
 
 - [Install Poetry](https://python-poetry.org/docs/#installation)
-- 
GitLab