Metadata-Version: 2.1
Name: taskchain
Version: 1.1.0
Summary: Utility for running data and ML pipelines
Home-page: https://github.com/thran/taskchain
Author: Jiří `Thran` Řihák
Author-email: jiri.rihak@flowerchecker.com
License: UNKNOWN
Download-URL: https://github.com/thran/taskchain/archive/refs/tags/1.1.0.tar.gz
Description: # TaskChain
        
        [Documentation](https://flowerchecker.gitlab.io/taskchain/)
        
        ## Install
        
        ```bash
        python setup.py install
        # or
        python setup.py develop
        ```
        
        ## Chengelog
        
        #### 1.1.0
        - release to PIP
        
        #### 1.0.3
        - more types can be used for `run` method, e.g. `dict` or `Dict[str, int]`
        - forbid some names of parameters with special meaning in configs (`uses`, `tasks`, ...)
        - you should import from `taskchain` instead of `taskchain.taks`, later is deprecated and will be removed
          - use `from taskchain import Task, Config, Chain` or `import taskchain as tc; tc.Task`
        - MultiChain are now more robust, you can use them with configs with context, and it will work correctly 
        
        ## Docs
        https://flowerchecker.gitlab.io/taskchain/
        
        #### Develop
        ```bash
        mkdocs serve
        ```
        
        #### Build
        Automatically build by GitLab CI
        ```bash
        mkdocs build --strict --verbose
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
