Metadata-Version: 1.1
Name: runcli
Version: 0.0.1
Summary: Use Runfiles in your projects.
Home-page: https://github.com/nalourie/runcli
Author: Nicholas Lourie
Author-email: UNKNOWN
License: MIT
Description: ======
        runcli
        ======
        Run commands for your repo, easily.
        
        ``runcli`` allows you to define a ``Runfile`` at the root of your
        repository, and then call that file from anywhere in your repo as a
        script using the command ``run``. The rest is up to you!
        
        See `the github repo <https://github.com/nalourie/runcli>`_ for the
        source code.
        
        
        ------------
        Installation
        ------------
        
        Install ``runcli`` with ``pip``::
        
          pip install runcli
        
        Currently only linux is tested, but it should also work on Mac.
        
        
        ----------
        Quickstart
        ----------
        To use ``run``, first write a ``Runfile`` in the root of some
        repository. The ``Runfile`` is just a script, and can be any script you
        like, for example::
        
          #! /bin/bash
        
          echo $1
        
        Then, from anywhere in your repository call the ``Runfile`` script using
        the ``run`` command::
        
          > run "hello, world!"
          hello, world!
        
        That's all there is to it.
        
        
        ------------
        Contributing
        ------------
        Pull requests are welcome. All contributions should happen on
        `the github repo <https://github.com/nalourie/runcli>`_.
        
Keywords: development
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
