Metadata-Version: 2.1
Name: autoplay
Version: 0.1.0
Summary: yaml orchestration for bash
Home-page: https://yourlabs.io/oss/autoplay
License: UNKNOWN
Description: AutoPlay: yaml orchestration for bash
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        Sometimes I find make too old, autoplay unfrustrates me.
        
        Getting started
        ---------------
        
        Install with ``pip install autoplay``.
        
        Try a builting example with command::
        
            autoplay run twine pypi_user=jpic pypi_pass=lol mode=dryrun
        
        Create a file with name ``autoplay.yml`` containing::
        
            ---
            env:
              someglobal: foo
        
            ---
            name: example
            env:
              example_var: ./autoplay-example
              multiline_var: |
                foo
                bar
            setup:
            - test -f $example_var || echo "$multiline_var" > $example_var
            script:
            - cat $example_var
        
            ---
            name: test
            requires:
            - example
        
        Then, see the commands it would execute with ``autoplay run example mode=dryrun``...
Keywords: automation cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Database
Classifier: Topic :: Software Development
Classifier: Topic :: System
Classifier: Topic :: Terminals
Requires-Python: >=3
Description-Content-Type: text/x-rst
