Metadata-Version: 2.1
Name: ts-sdk
Version: 1.0.5
Summary: Tetrascience Python SDK
Home-page: https://developers.tetrascience.com
Author: tetrascience
Author-email: developers@tetrascience.com
License: Apache License 2.0
Description: # ts-sdk
        Tetrascience Python SDK for task scripts run and test
        
        ## Unit tests
        
        ```
        from ts_sdk.taskdev import Context, load_test_input, load_pipeline_config, check_test_output
        
        ctx = Context()
        load_pipeline_config(ctx, ...)
        input = load_test_input(ctx, ...)
        task_script_fn(input, ctx)
        check_test_output(ctx, ...)
        ```
        
        WIP...
        
        ## Dockerfile ENTRYPOINT
        
        ```
        ENTRYPOINT [ "<python-bin>", "-u", "-m", "ts_sdk.task.run" ]
        ```
        
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
