diff options
Diffstat (limited to 'tosca2heat/tosca-parser/doc')
-rw-r--r-- | tosca2heat/tosca-parser/doc/source/conf.py | 1 | ||||
-rw-r--r-- | tosca2heat/tosca-parser/doc/source/installation.rst | 15 |
2 files changed, 12 insertions, 4 deletions
diff --git a/tosca2heat/tosca-parser/doc/source/conf.py b/tosca2heat/tosca-parser/doc/source/conf.py index e461246..d5d9189 100644 --- a/tosca2heat/tosca-parser/doc/source/conf.py +++ b/tosca2heat/tosca-parser/doc/source/conf.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at diff --git a/tosca2heat/tosca-parser/doc/source/installation.rst b/tosca2heat/tosca-parser/doc/source/installation.rst index f3805a5..5476d41 100644 --- a/tosca2heat/tosca-parser/doc/source/installation.rst +++ b/tosca2heat/tosca-parser/doc/source/installation.rst @@ -2,8 +2,17 @@ Installation ============ -You can clone the project and use it as below:: +PyPI Installation +----------------- +Tosca-Parser can be installed via a PyPI package. Refer to https://pypi.python.org/pypi/tosca-parser for available packages. +The latest release can be simply installed by running the following command:: - git clone https://github.com/openstack/tosca-parser + sudo pip install tosca-parser + +Manual Installation +------------------- +You can manually install the latest code available at the TOSCA-Parser github repository by following these steps:: -Tosca-Parser can be installed via PyPI package as well. Refer to https://pypi.python.org/pypi/tosca-parser for available packages.
\ No newline at end of file + git clone https://github.com/openstack/tosca-parser + cd tosca-parser + sudo python setup.py install |