From e09900770192831d6dacf1c9c8f0f2c095ede805 Mon Sep 17 00:00:00 2001 From: Jon Palmisciano Date: Sun, 25 Dec 2022 14:49:29 -0500 Subject: [PATCH] Add minimal install instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0ac5206..5284d4c 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,16 @@ Emake is an easy wrapper around CMake's CLI. It is meant to speed up the process of configuring and building a CMake-based project from the command line. It provides a user experience that smells vaguely like Autotools. +## Install + +Emake is not in the Python Package Index at this time. To install Emake, build +it using [Poetry](https://python-poetry.org), then install it: + +```sh +poetry build +pip install dist/emake--py3-none-any.whl +``` + ## Tutorial > A small tour of Emake is offered below; see `emake -h` and `econf -h` for comprehensive help.