@@ -17,30 +17,25 @@ Bindings for libssh_ C library.
1717 :target: https://pypi.python.org/pypi/ssh-python
1818.. image :: https://ci.appveyor.com/api/projects/status/2t4bmmtjvfy5s1in/branch/master?svg=true
1919 :target: https://ci.appveyor.com/project/pkittenis/ssh-python
20+ .. image :: https://readthedocs.org/projects/ssh-python/badge/?version=latest
21+ :target: http://ssh-python.readthedocs.org/en/latest/
22+ :alt: Latest documentation
2023
2124
2225Installation
2326_____________
2427
25- Binary wheels are provided for Linux, OSX and Windows wheels to follow.
28+ Binary wheels are provided for Linux (manylinux 2010), OSX (10.14 and 10.15 for brew Python), and Windows 64-bit (Python 3.6/3.7/3.8).
29+
30+ Wheels have *no dependencies *. For building from source, see `documentation <http://ssh-python.readthedocs.org/en/latest/ >`_.
2631
2732
2833.. code-block :: shell
2934
3035 pip install ssh-python
3136
3237
33- Project is beta status.
34-
35-
36- Prerequisites
37- --------------
38-
39- * OpenSSL *or * gcrypt library and development headers
40- * Optionally Zlib library and development headers for compression
41-
42- ``Libssh `` source code is embedded in this project and will be built when installation is triggered per above instructions.
43- Versions of ``libssh `` other than the one embedded in this project are not supported.
38+ Project is beta status, please report any issues.
4439
4540
4641Quick Start
@@ -90,10 +85,14 @@ _________
9085The library uses `Cython `_ based native code extensions as wrappers to ``libssh ``.
9186
9287* Thread safe - GIL released as much as possible
88+
89+ * libssh threading limitations apply - anything not supported in C is not supported in Python
9390* Very low overhead thin wrapper
9491* Object oriented
92+
9593 * Memory freed automatically and safely as objects are garbage collected by Python
9694* Uses Python semantics where applicable
95+
9796 * channel/file handle context manager support
9897 * channel/file handle iterator support
9998* Raises low level C errors as Python exceptions
0 commit comments