Metadata-Version: 1.0
Name: Fabric
Version: 0.9b1
Summary: Fabric is a simple, Pythonic tool for remote execution and deployment.
Home-page: http://fabfile.org
Author: Jeff Forcier
Author-email: jeff@bitprophet.org
License: UNKNOWN
Description: Fabric is a Python library and command-line tool designed to streamline
        deploying applications or performing system administration tasks via the SSH
        protocol. It provides tools for running arbitrary shell commands (either as a
        normal login user, or via ``sudo``), uploading and downloading files, and so
        forth.
        
        Typical use involves defining a "fabfile" (a Python module) containing one or
        more functions or tasks which may then be executed by the ``fab`` command-line
        tool. Fabric provides extra functionality related to this mode of use, such as
        prompting for user input, ensuring certain variables are present in order for
        tasks to run, and specifying which host or hosts a specific task connects to
        by default.
        
        Fabric may also be used as a standalone library, so that other Python programs
        needing a simple API on top of SSH or SCP may import and utilize specific
        pieces of functionality.
        
        
        For more information, please see the Fabric website or execute ``fab --help``.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
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
