From 168a359bf8e73c3787ab380fb4ab93b554ef6f0a Mon Sep 17 00:00:00 2001 From: Ivan Nazarov Date: Tue, 14 Jun 2022 10:10:27 +0300 Subject: [PATCH] add a couple of lines about setup --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index b915f95..edd9d4b 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,25 @@ `plyr` happens to coincide with a similarly named library for [`R` statistical computations language](https://www.r-project.org/), which streamlines dataframe and vector/matrix transformations. +## Setup + +The package can be installed from `pip`: + +```bash +pip install python-plyr +``` + +The development environment could be initialized with the following commands: + +```bash +# create a dedicated env +conda create -n plyr "python>=3.7" pip pytest twine \ + && conda activate plyr \ + && pip install build + +# build and install +pip install -e . -vv +``` ## the Essential Example