Metadata-Version: 1.2
Name: scipion-pyworkflow
Version: 3.0.0a0
Summary: Simple workflow platform used in scientific applications, initially developed within the Scipion framework for image processing in Electron Microscopy.
Home-page: https://github.com/scipion-em/scipion-pyworkflow
Author: J.M. De la Rosa Trevin, Roberto Marabini, Grigory Sharov, Josue Gomez Blanco, Pablo Conesa, Yunior Fonseca Reyna
Author-email: delarosatrevin@scilifelab.se, roberto@cnb.csic.es, gsharov@mrc-lmb.cam.ac.uk, josue.gomez-blanco@mcgill.ca, pconesa@cnb.csic.es, fonsecareyna@cnb.csic.es
License: UNKNOWN
Project-URL: Source, https://github.com/scipion-em/scipion-pyworkflow/
Project-URL: Bug Reports, https://github.com/scipion-em/scipion-pyworkflow/issues
Description: 
        pyworkflow
        ===========
        
        **pyworkflow** is a simple workflow platform used in scientific applications. It has been initially developed
        within the Scipion framework for image processing in Electron Microscopy.
         
        **pyworkflow** allows you to define a working Domain by defining the following group of classes:
        
          * Objects: input/outputs that will be generated by different programs
          * Protocols: special type of Objects that have defined input parameters and will produce some output
          * Viewers: Entities that provide graphical analysis of results.
          * Wizards: Small GUIs that can be develop to help users to select given parameter values.
        
        Development
        -------------
        To install **pyworkflow** for development purposes, one can do:
        
        .. code-block:: bash
        
            # Create a clean virtual environment
            python -m virtualenv ~/myenv
            source ~/myenv/bin/activate
            git clone git@github.com:scipion-em/scipion-pyworkflow.git
            cd scipion-pyworkflow
            python -m pip install -e .  # Install in the environment as development
        
        Running tests
        .............
        First make sure that **pyworkflow** is available as a Python module in your
        current Python environment. During development, I tend to set the PYTHONPATH:
        
        .. code-block:: bash
        
            cd scipion-pyworkflow
            export PYTHONPATH=$PYTHONPATH:$PWD
            cd pyworkflow/tests
        
            python -m unittest discover
          
        
        
        
Keywords: workflows science scipion electron-microscopy cryo-em structural-biology image-processing scipion-2.0
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2.7
