From 70f01b08ef06cbdb44c36a92c3168a4dad532c20 Mon Sep 17 00:00:00 2001 From: Frank Ghenassia Date: Sat, 8 Jun 2024 13:35:39 +0300 Subject: [PATCH 1/2] Minor edit (SDK -> Library) --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index ff84713..b1a9b7f 100644 --- a/README.adoc +++ b/README.adoc @@ -23,7 +23,7 @@ mvn -version ---- If Maven is properly installed, you should see information about the Maven version and configuration. -=== Importing the sdk +=== Importing the Library To set up SDK, follow the steps below: @@ -55,7 +55,7 @@ python -m pip install . *This will install the up-python, making its classes and modules available for import in your python code.* -=== Using The Library +=== Using the Library The Library is broken up into different packages that are described in <> below. Each package contains a README.adoc file that describes the purpose of the package and how to use it. Packages are organized into the following directories: From ed90eba82b16a3c0657594885962b2cc17b8d4aa Mon Sep 17 00:00:00 2001 From: Frank Ghenassia Date: Sat, 8 Jun 2024 16:09:07 +0300 Subject: [PATCH 2/2] Fix up-python install command to run successfully from "current" (up-python/scripts according to README 'flow') directory --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index b1a9b7f..f84959f 100644 --- a/README.adoc +++ b/README.adoc @@ -50,7 +50,7 @@ This script automates the following tasks: + [source] ---- -python -m pip install . +python -m pip install ../ ---- *This will install the up-python, making its classes and modules available for import in your python code.*