Metadata-Version: 2.1
Name: fabric
Version: 2.6.0
Summary: High level SSH command execution
Home-page: http://fabfile.org
Author: Jeff Forcier
Author-email: jeff@bitprophet.org
License: BSD
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Clustering
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: System :: Systems Administration
License-File: LICENSE
Requires-Dist: invoke<2.0,>=1.3
Requires-Dist: paramiko>=2.4
Requires-Dist: pathlib2
Provides-Extra: testing
Requires-Dist: mock<3.0,>=2.0.0; extra == "testing"
Provides-Extra: pytest
Requires-Dist: mock<3.0,>=2.0.0; extra == "pytest"
Requires-Dist: pytest<4.0,>=3.2.5; extra == "pytest"


To find out what's new in this version of Fabric, please see `the changelog
<http://fabfile.org/changelog.html>`_.

Welcome to Fabric!
==================

Fabric is a high level Python (2.7, 3.4+) library designed to execute shell
commands remotely over SSH, yielding useful Python objects in return. It builds
on top of `Invoke <http://pyinvoke.org>`_ (subprocess command execution and
command-line features) and `Paramiko <http://paramiko.org>`_ (SSH protocol
implementation), extending their APIs to complement one another and provide
additional functionality.

For a high level introduction, including example code, please see
`our main project website <http://fabfile.org>`_; or for detailed API docs, see
`the versioned API website <http://docs.fabfile.org>`_.

