[2/4] incubator-ariatosca git commit: ARIA-283 Update readme installation instructions

2017-06-22 Thread mxmrlv
ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/a7519349
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/a7519349
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/a7519349

Branch: refs/heads/ARIA-284-Cleanup-and-optimize-the-task-execution
Commit: a7519349c07a20a04c1b8acda656daa8679f5135
Parents: 105971f
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:37:08 2017 +0300

--
 README.rst | 66 +++--
 1 file changed, 45 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/a7519349/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..dc53d47 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,61 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
+
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
+
+| The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for installing specifically the frozen dependencies' 
versions with which ARIA was tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+| Note: These dependencies may have varying licenses which may not be 
compatible with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
 
-pip install .
+**Windows** (tested on Win10)::
 
-The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
-installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +153,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/master 105971f8e -> a7519349c


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/a7519349
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/a7519349
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/a7519349

Branch: refs/heads/master
Commit: a7519349c07a20a04c1b8acda656daa8679f5135
Parents: 105971f
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:37:08 2017 +0300

--
 README.rst | 66 +++--
 1 file changed, 45 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/a7519349/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..dc53d47 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,61 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
+
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
+
+| The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for installing specifically the frozen dependencies' 
versions with which ARIA was tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+| Note: These dependencies may have varying licenses which may not be 
compatible with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
 
-pip install .
+**Windows** (tested on Win10)::
 
-The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
-installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +153,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: 

[4/4] incubator-ariatosca git commit: ARIA-283 Update readme installation instructions

2017-06-22 Thread ran
ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/a7519349
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/a7519349
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/a7519349

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: a7519349c07a20a04c1b8acda656daa8679f5135
Parents: 105971f
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:37:08 2017 +0300

--
 README.rst | 66 +++--
 1 file changed, 45 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/a7519349/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..dc53d47 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,61 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
+
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
+
+| The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for installing specifically the frozen dependencies' 
versions with which ARIA was tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+| Note: These dependencies may have varying licenses which may not be 
compatible with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
 
-pip install .
+**Windows** (tested on Win10)::
 
-The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
-installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +153,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions 19832d1aa -> 
1923a6731 (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/1923a673
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/1923a673
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/1923a673

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 1923a673177c6b1b295428469f7ccb4243a55783
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:36:11 2017 +0300

--
 README.rst | 66 +++--
 1 file changed, 45 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/1923a673/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..dc53d47 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,61 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
+
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
+
+| The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for installing specifically the frozen dependencies' 
versions with which ARIA was tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+| Note: These dependencies may have varying licenses which may not be 
compatible with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
 
-pip install .
+**Windows** (tested on Win10)::
 
-The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
-installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +153,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [ci skip] [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions 1c116ddbc -> 
19832d1aa (forced update)


ARIA-283 Update readme installation instructions [ci skip]


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/19832d1a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/19832d1a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/19832d1a

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 19832d1aa95601e3728c959550dde27d91b47dbc
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:33:46 2017 +0300

--
 README.rst | 66 +++--
 1 file changed, 45 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/19832d1a/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..dc53d47 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,61 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
+
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
+
+| The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for installing specifically the frozen dependencies' 
versions with which ARIA was tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+| Note: These dependencies may have varying licenses which may not be 
compatible with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
 
-pip install .
+**Windows** (tested on Win10)::
 
-The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
-installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +153,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions 635f7bd6a -> 
1c116ddbc (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/1c116ddb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/1c116ddb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/1c116ddb

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 1c116ddbc646cf0836cc448883344241c7f8fcb0
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:32:43 2017 +0300

--
 README.rst | 66 +++--
 1 file changed, 45 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/1c116ddb/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..421ecb9 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,61 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
+
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
+
+|The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for installing specifically the frozen dependencies' 
versions with which ARIA was tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+| Note: These dependencies may have varying licenses which may not be 
compatible with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
 
-pip install .
+**Windows** (tested on Win10)::
 
-The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
-installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +153,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions b2341f862 -> 
635f7bd6a (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/635f7bd6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/635f7bd6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/635f7bd6

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 635f7bd6a13b62612e65ffef5c2c326712e2bf78
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:31:40 2017 +0300

--
 README.rst | 63 -
 1 file changed, 44 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/635f7bd6/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..6fad1ae 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,62 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
+|
+|
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+|
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+|
+
+**Ubuntu/Debian** (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+**Centos** (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+**Archlinux**::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+**Windows** (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
+**MacOS**::
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +154,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions 809e3e064 -> 
b2341f862 (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/b2341f86
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/b2341f86
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/b2341f86

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: b2341f86292e8404eef7b357609364d708ce2b2e
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:25:36 2017 +0300

--
 README.rst | 63 -
 1 file changed, 44 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/b2341f86/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..832ef88 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,62 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system dependencies per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
+
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +154,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions 9bec6c9de -> 
809e3e064 (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/809e3e06
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/809e3e06
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/809e3e06

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 809e3e064c212a06f1b69f8dad14391aef3e5c2e
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:24:36 2017 +0300

--
 README.rst | 64 -
 1 file changed, 45 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/809e3e06/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..00f40b5 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,63 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system
+dependencies per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
+
+# TODO
 
-On Ubuntu or other Debian-based systems::
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or 
run::
 
-sudo pacman -S python-setuptools
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
 
 
 Getting Started
@@ -129,10 +155,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-22 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions bcbfd9deb -> 
9bec6c9de (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/9bec6c9d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/9bec6c9d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/9bec6c9d

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 9bec6c9de31777eb2604a81e033284528ca8e526
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Thu Jun 22 12:23:33 2017 +0300

--
 README.rst | 71 ++---
 1 file changed, 52 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/9bec6c9d/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..853765c 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,70 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+| ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+| Below are instructions on how to install these dependencies, including 
required system
+dependencies per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
+
+# TODO
+
+
+
+To install ``pip``, either use your distro's package management system, or 
run::
 
-On Ubuntu or other Debian-based systems::
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
+To install ``pip``, either use your distro's package management system, or run:
 
-sudo pacman -S python-setuptools
+::
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
 
 Getting Started
@@ -129,10 +162,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-21 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions e7ab90d10 -> 
e339960ef (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/e339960e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/e339960e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/e339960e

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: e339960ef92663560c68cf049e824853f91cf74b
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Wed Jun 21 18:07:48 2017 +0300

--
 README.rst | 63 -
 1 file changed, 44 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/e339960e/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..3aa62fe 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,62 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+Below are instructions on how to install these dependencies, including 
required system dependencies
+per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
 
-On Ubuntu or other Debian-based systems::
+# TODO
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
 
-sudo pacman -S python-setuptools
+To install ``pip``, either use your distro's package management system, or run:
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
 
 Getting Started
@@ -129,10 +154,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-21 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions e339960ef -> 
92480c20c (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/92480c20
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/92480c20
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/92480c20

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: 92480c20cdb9eff33d2846d8324145b3d5053484
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Wed Jun 21 18:08:20 2017 +0300

--
 README.rst | 63 -
 1 file changed, 44 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/92480c20/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..d49410c 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,62 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+Below are instructions on how to install these dependencies, including 
required system dependencies
+per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
 
-On Ubuntu or other Debian-based systems::
+# TODO
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
 
-sudo pacman -S python-setuptools
+To install ``pip``, either use your distro's package management system, or 
run::
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
 
 Getting Started
@@ -129,10 +154,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions [Forced Update!]

2017-06-21 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions f786a73dd -> 
e7ab90d10 (forced update)


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/e7ab90d1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/e7ab90d1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/e7ab90d1

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: e7ab90d10dc9cccd320253c8c7092b007eeba812
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Wed Jun 21 18:06:46 2017 +0300

--
 README.rst | 63 -
 1 file changed, 44 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/e7ab90d1/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..fe9c489 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,62 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+Below are instructions on how to install these dependencies, including 
required system dependencies
+per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
 
-On Ubuntu or other Debian-based systems::
+# TODO
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
 
-sudo pacman -S python-setuptools
+To install ``pip``, either use your distro's package management system, or run:
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
 
 Getting Started
@@ -129,10 +154,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image:: 

incubator-ariatosca git commit: ARIA-283 Update readme installation instructions

2017-06-21 Thread ran
Repository: incubator-ariatosca
Updated Branches:
  refs/heads/ARIA-283-update-readme-installation-instructions [created] 
f786a73dd


ARIA-283 Update readme installation instructions


Project: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/commit/f786a73d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/tree/f786a73d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/diff/f786a73d

Branch: refs/heads/ARIA-283-update-readme-installation-instructions
Commit: f786a73dd4b2ac2fc56b71e5a9649a4f9ab840f7
Parents: 9907520
Author: Ran Ziv 
Authored: Wed Jun 21 18:05:05 2017 +0300
Committer: Ran Ziv 
Committed: Wed Jun 21 18:05:05 2017 +0300

--
 README.rst | 63 -
 1 file changed, 44 insertions(+), 19 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-ariatosca/blob/f786a73d/README.rst
--
diff --git a/README.rst b/README.rst
index 8af13a5..3aa62fe 100644
--- a/README.rst
+++ b/README.rst
@@ -26,37 +26,62 @@ ARIA is an incubation project under the `Apache Software 
Foundation `__.
+ARIA is `available on PyPI `__.
+
+ARIA requires Python 2.6/2.7. Python 3 is currently not supported.
 
 To install ARIA directly from PyPI (using a ``wheel``), use::
 
-pip install aria
+pip install --upgrade pip setuptools
+pip install apache-ariatosca
 
 To install ARIA from source, download the source tarball from
-`PyPI `__, extract it, and then when 
inside the extracted
-directory, use::
+`PyPI `__, extract it, and run::
 
-pip install .
+pip install --upgrade pip setuptools
+pip install incubator-ariatosca
 
 The source package comes along with relevant examples, documentation, 
``requirements.txt`` (for
 installing specifically the frozen dependencies' versions with which ARIA was 
tested) and more.
 
-Note that for the ``pip install`` commands mentioned above, you must use a 
privileged user, or use
-virtualenv.
 
-ARIA itself is in a ``wheel`` format compatible with all platforms. Some 
dependencies, however,
-might require compilation (based on a given platform), and therefore possibly 
some system
-dependencies are required as well.
+ARIA has additional optional dependencies. These are required for running 
operations over SSH.
+Below are instructions on how to install these dependencies, including 
required system dependencies
+per OS.
+
+Note: These dependencies may have varying licenses which may not be compatible 
with Apache license 2.0.
+
+
+Ubuntu/Debian (tested on Ubuntu14.04, Ubuntu16.04)::
+
+apt-get install -y python-dev gcc libffi-dev libssl-dev
+pip install aria[ssh]
+
+Centos (tested on Centos6.6, Centos7)::
+
+yum install -y python-devel gcc libffi-devel openssl-devel
+pip install aria[ssh]
+
+Archlinux::
+
+pacman -Syu --noconfirm python2 gcc libffi openssl
+pip2 install aria[ssh]
+
+Windows (tested on Win10)::
+
+# no additional system requirements are needed
+pip install aria[ssh]
+
+MacOS::
 
-On Ubuntu or other Debian-based systems::
+# TODO
 
-sudo apt install python-setuptools python-dev build-essential libssl-dev 
libffi-dev
 
-On Archlinux::
 
-sudo pacman -S python-setuptools
+To install ``pip``, either use your distro's package management system, or run:
 
-ARIA requires Python 2.6/2.7. Python 3+ is currently not supported.
+wget http://bootstrap.pypa.io/get-pip.py
+python get-pip.py
 
 
 Getting Started
@@ -129,10 +154,10 @@ ARIA is licensed under the
:target: 
https://ci.appveyor.com/project/ApacheSoftwareFoundation/incubator-ariatosca/history
 .. |License| image:: 
https://img.shields.io/github/license/apache/incubator-ariatosca.svg
:target: http://www.apache.org/licenses/LICENSE-2.0
-.. |PyPI release| image:: https://img.shields.io/pypi/v/ariatosca.svg
-   :target: https://pypi.python.org/pypi/ariatosca
-.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/ariatosca.svg
-.. |Wheel| image:: https://img.shields.io/pypi/wheel/ariatosca.svg
+.. |PyPI release| image:: https://img.shields.io/pypi/v/apache-ariatosca.svg
+   :target: https://pypi.python.org/pypi/apache-ariatosca
+.. |Python Versions| image:: 
https://img.shields.io/pypi/pyversions/apache-ariatosca.svg
+.. |Wheel| image:: https://img.shields.io/pypi/wheel/apache-ariatosca.svg
 .. |Contributors| image::