Metadata-Version: 1.1
Name: tmuxp
Version: 0.0.5-dev
Summary: Manage and build tmux workspaces.
Home-page: http://github.com/tony/tmuxp/
Author: Tony Narlock
Author-email: tony@git-pull.com
License: BSD
Download-URL: https://pypi.python.org/pypi/tmuxp
Description: `tmuxp` solves the panes / pains of managing workspaces.
        
        .. image:: https://travis-ci.org/tony/tmuxp.png?branch=master
           :target: https://travis-ci.org/tony/tmuxp
        
        .. image:: https://badge.fury.io/py/tmuxp.png
            :target: http://badge.fury.io/py/tmuxp
        
        tmuxp, a novel approach to managing `tmux(1)`_ workspaces through
        python objects, with configuration loading in JSON, YAML and
        python dict included.
        
        tmuxp works in 3 ways:
        
        - a pythonic `abstraction layer`_ on top of tmux' CLI commands
        - an `ORM`_ that internally orchestrates relations between servers,
          sessions, windows and panes for good and evil purposes.
        - CLI tmux session manager, similar to `teamocil`_ and `tmuxinator`_, with
          support for YAML, JSON and python dicts.
        
        Get started now, ``$ mkdir ~/.tmuxp`` and make a file
        ``~/.tmuxp/test.yaml``.
        
        .. code-block:: yaml
        
            session_name: my session
            windows:
            - window_name: my test window
                panes:
                - bash
                - bash
        
        Now with ``tmuxp``:
        
        .. code-block:: bash
        
            $ tmuxp test.yaml
        
        Check out our `Examples`_, `Quickstart`_ and `bash completion`_ support.
        
        ==============  ==========================================================
        tmux support    1.8, 1.9-dev
        config support  yaml, json, python dict
        Travis          http://travis-ci.org/tony/tmuxp
        Docs            http://tmuxp.rtfd.org
        API             http://tmuxp.readthedocs.org/en/latest/api.html
        Changelog       http://tmuxp.readthedocs.org/en/latest/changes.html
        Issues          https://github.com/tony/tmuxp/issues
        Source          https://github.com/tony/tmuxp
        pypi            https://pypi.python.org/pypi/tmuxp
        License         `BSD`_.
        git repo        .. code-block:: bash
        
                            $ git clone https://github.com/tony/tmuxp.git
        install dev     .. code-block:: bash
        
                            $ git clone https://github.com/tony/tmuxp.git tmuxp
                            $ cd ./tmuxp
                            $ virtualenv .env
                            $ source .env/bin/activate
                            $ pip install -e .
        
                        See the `developing and testing`_ page in the docs for
                        more.
        tests           .. code-block:: bash
        
                            $ python ./run_tests.py
        ==============  ==========================================================
        
        .. _BSD: http://opensource.org/licenses/BSD-3-Clause
        .. _developing and testing: http://tmuxp.readthedocs.org/en/latest/developing.html
        .. _Examples: http://tmuxp.readthedocs.org/en/latest/examples.html
        .. _Quickstart: http://tmuxp.readthedocs.org/en/latest/quickstart.html
        .. _bash completion: http://tmuxp.readthedocs.org/en/latest/quickstart.html#bash-completion
        .. _tmuxinator: https://github.com/aziz/tmuxinator
        .. _teamocil: https://github.com/remiprev/teamocil
        .. _abstraction layer: http://en.wikipedia.org/wiki/Abstraction_layer
        .. _ORM: http://en.wikipedia.org/wiki/Object-relational_mapping
        .. _tmux(1): http://tmux.sourceforge.net/
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Utilities
Classifier: Topic :: System :: Shells
