Metadata-Version: 2.2
Name: paramiko-ng
Version: 2.9.0
Summary: SSH2 protocol library
Home-page: https://github.com/ploxiln/paramiko-ng/
Author: Jeff Forcier
Author-email: jeff@bitprophet.org
Maintainer: Pierce Lopez
Maintainer-email: pierce.lopez@gmail.com
License: LGPL
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Security :: Cryptography
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
License-File: LICENSE
Requires-Dist: bcrypt>=3
Requires-Dist: cryptography>=2.6
Provides-Extra: ed25519
Provides-Extra: gssapi
Requires-Dist: pyasn1; extra == "gssapi"
Requires-Dist: gssapi; platform_system != "Windows" and extra == "gssapi"
Requires-Dist: pywin32; platform_system == "Windows" and extra == "gssapi"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: platform
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary


*paramiko-ng* is a fork of `paramiko <https://pypi.org/project/paramiko/>`_

For changes in releases of this fork, see https://github.com/ploxiln/paramiko-ng/releases

This is a library for making SSH2 connections (client or server).
Emphasis is on using SSH2 as an alternative to SSL for making secure
connections between python scripts.  All major ciphers and hash methods
are supported.  SFTP client and server mode are both supported too.

Required packages:
    Cryptography

The import name is still just ``paramiko``. Make sure the original *paramiko*
is not installed before installing *paramiko-ng* - otherwise pip may report
success even though *paramiko-ng* was not correctly installed.
(Because the import name is the same, installed files can conflict.)

You can also install under the original "paramiko" pip-package-name,
in order to satisfy requirements for other packages::

    PARAMIKO_REPLACE=1 pip install "https://github.com/ploxiln/paramiko-ng/archive/2.8.10.tar.gz#egg=paramiko"

Replace "2.8.10" with the desired version.

To install the latest development version::

    pip install "git+https://github.com/ploxiln/paramiko-ng/#egg=paramiko-ng"

