Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorVictor Popov <v.popov@corp.mail.ru>2020-04-09 14:54:22 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2020-06-03 16:37:10 +0300
commit9cb1a51ef59e590402af8e0773bcc3c8cfcccbb8 (patch)
treec6a17d3ff0deb809b6f52a45fbcc7fdbe56dcbaa /docs
parent943d6ca6fdf61700895284f2a00a92c11067b420 (diff)
[pybindings] PR review improvements
- docs refinements - python style fixes
Diffstat (limited to 'docs')
-rw-r--r--docs/building_pybindings.txt27
1 files changed, 14 insertions, 13 deletions
diff --git a/docs/building_pybindings.txt b/docs/building_pybindings.txt
index be4b4d8294..47e2bd81bc 100644
--- a/docs/building_pybindings.txt
+++ b/docs/building_pybindings.txt
@@ -22,17 +22,18 @@ Ensure you have ran:
Building single pybinding module
--------------------------------
Find a correspoding module's setup.py.
-Current list of available modules and setup's:
-
-- generator/mwm_diff/pymwm_diff/setup.py
-- generator/pygen/setup.py
-- kml/pykmlib/setup.py
-- local_ads/pylocal_ads/setup.py
-- search/pysearch/setup.py
-- tracking/pytracking/setup.py
-- traffic/pytraffic/setup.py
-
-Run chosen setup.py with Python you want to build binding for.
+Currently available modules and setup's:
+| module | path to setup.py |
+|-------------|----------------------------------------|
+| pygen | generator/pygen/setup.py |
+| pykmlib | kml/pykmlib/setup.py |
+| pylocal_ads | local_ads/pylocal_ads/setup.py |
+| pymvm_diff | generator/mwm_diff/pymwm_diff/setup.py |
+| pysearch | search/pysearch/setup.py |
+| pytracking | tracking/pytracking/setup.py |
+| pytraffic | traffic/pytraffic/setup.py |
+
+Run the chosen setup.py with Python you want to build binding for.
Examples:
$ python kml/pykmlib/setup.py build install --user
@@ -81,8 +82,8 @@ But this can be a long wait, it is better to use already compiled .whl
distribution.
-Running and testing built pybinding
------------------------------------
+Running and testing a pybinding
+-------------------------------
Install your freshly built pybinding either with `setup.py install`, or by
installing .whl with `pip install`.