Metadata-Version: 2.1
Name: ActionTree
Version: 0.12.0
Summary: Executes (long) actions in parallel, respecting dependencies between those actions
Home-page: http://jacquev6.github.io/ActionTree
Author: Vincent Jacques
Author-email: vincent@vincent-jacques.net
License: MIT
Description: .. GENI: intro
        .. GENERATED SECTION, MANUAL EDITS WILL BE LOST
        
        *ActionTree* is a Python (2.7 and 3.5+) library to execute (long) actions in parallel, respecting dependencies between those actions.
        You create a dependency graph of actions to be executed and then call the ``execute`` function on its root.
        
        .. END OF GENERATED SECTION
        
        .. GENI: info
        .. GENERATED SECTION, MANUAL EDITS WILL BE LOST
        
        It's licensed under the `MIT license <http://choosealicense.com/licenses/mit/>`_.
        It's available on the `Python package index <http://pypi.python.org/pypi/ActionTree>`_.
        Its `documentation <http://jacquev6.github.io/ActionTree>`_
        and its `source code <https://github.com/jacquev6/ActionTree>`_ are on GitHub.
        
        .. END OF GENERATED SECTION
        
        .. GENI: badges
        .. GENERATED SECTION, MANUAL EDITS WILL BE LOST
        
        Questions? Remarks? Bugs? Want to contribute? `Open an issue <https://github.com/jacquev6/ActionTree/issues>`_!
        
        .. image:: https://img.shields.io/travis/jacquev6/ActionTree/master.svg
            :target: https://travis-ci.org/jacquev6/ActionTree
        
        .. image:: https://img.shields.io/coveralls/jacquev6/ActionTree/master.svg
            :target: https://coveralls.io/r/jacquev6/ActionTree
        
        .. image:: https://img.shields.io/codeclimate/github/jacquev6/ActionTree.svg
            :target: https://codeclimate.com/github/jacquev6/ActionTree
        
        .. image:: https://img.shields.io/scrutinizer/g/jacquev6/ActionTree.svg
            :target: https://scrutinizer-ci.com/g/jacquev6/ActionTree
        
        .. image:: https://img.shields.io/pypi/dm/ActionTree.svg
            :target: https://pypi.python.org/pypi/ActionTree
        
        .. image:: https://img.shields.io/pypi/l/ActionTree.svg
            :target: https://pypi.python.org/pypi/ActionTree
        
        .. image:: https://img.shields.io/pypi/v/ActionTree.svg
            :target: https://pypi.python.org/pypi/ActionTree
        
        .. image:: https://img.shields.io/pypi/pyversions/ActionTree.svg
            :target: https://pypi.python.org/pypi/ActionTree
        
        .. image:: https://img.shields.io/pypi/status/ActionTree.svg
            :target: https://pypi.python.org/pypi/ActionTree
        
        .. image:: https://img.shields.io/github/issues/jacquev6/ActionTree.svg
            :target: https://github.com/jacquev6/ActionTree/issues
        
        .. image:: https://img.shields.io/github/forks/jacquev6/ActionTree.svg
            :target: https://github.com/jacquev6/ActionTree/network
        
        .. image:: https://img.shields.io/github/stars/jacquev6/ActionTree.svg
            :target: https://github.com/jacquev6/ActionTree/stargazers
        
        .. END OF GENERATED SECTION
        
        Quick start
        ===========
        
        Install from PyPI::
        
            $ pip install ActionTree
        
        With dependencies to create Gantt charts and dependency graphs::
        
            $ pip install 'ActionTree[dependency_graphs,gantt]'
        
        Import:
        
        >>> from ActionTree import execute
        >>> from ActionTree.stock import CallSubprocess
        
        Execute some action:
        
        >>> link = CallSubprocess(["g++", "a.o", "b.o", "-o", "test"])
        >>> link.add_dependency(CallSubprocess(["g++", "-c", "a.cpp", "-o", "a.o"]))
        >>> link.add_dependency(CallSubprocess(["g++", "-c", "b.cpp", "-o", "b.o"]))
        >>> report = execute(link)
        
        And verify everything went well:
        
        >>> report.is_success
        True
        >>> os.path.isfile("test")
        True
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Provides-Extra: dependency_graphs
Provides-Extra: gantt
