Metadata-Version: 2.1
Name: prefect
Version: 0.5.0
Summary: The Prefect Core automation and scheduling engine.
Home-page: https://www.github.com/PrefectHQ/prefect
Author: Prefect Technologies, Inc.
Author-email: help@prefect.io
License: Apache License 2.0
Description: <p align="center" style="margin-bottom:40px;">
        <img src="https://uploads-ssl.webflow.com/5ba446b0e783e26d5a2f2382/5c942c9ca934ec5c88588297_primary-color-vertical.svg"  height=350 style="max-height: 350px;">
        </p>
        
        <p align="center">
        <a href=https://circleci.com/gh/PrefectHQ/prefect/tree/master>
            <img src="https://circleci.com/gh/PrefectHQ/prefect/tree/master.svg?style=shield&circle-token=28689a55edc3c373486aaa5f11a1af3e5fc53344">
        </a>
        
        <a href=https://github.com/ambv/black style="margin-left: 10px">
            <img src="https://img.shields.io/badge/code%20style-black-000000.svg">
        </a>
        
        <a href="https://gitter.im/prefectio/prefect?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge">
            <img src="https://badges.gitter.im/prefectio/prefect.svg">
        </a>
        </p>
        
        ## Hello, world! 👋
        
        We've rebuilt data engineering for the data science era.
        
        Prefect is a new workflow management system, designed for modern infrastructure and powered by the open-source Prefect Core workflow engine. Users organize `Tasks` into `Flows`, and Prefect takes care of the rest.
        
        Read the [docs](https://docs.prefect.io); get the [code](#installation); ask us [anything](mailto:help@prefect.io)!
        
        ```python
        from prefect import task, Flow
        
        
        @task
        def say_hello():
            print("Hello, world!")
        
        
        with Flow("My First Flow") as flow:
            say_hello()
        
        
        flow.run() # "Hello, world!"
        ```
        
        ## Docs
        
        Pefect's documentation -- including concepts, tutorials, and a full API reference -- is always available at [docs.prefect.io](https://docs.prefect.io).
        
        [Documentation for developers](https://docs.prefect.io/guide/development/overview.html) is also available, covering code style, documentation, and testing.
        
        ## "...Prefect?"
        
        From the Latin _praefectus_, meaning "one who is in charge", a prefect is an official who oversees a domain and makes sure that the rules are followed. Similarly, Prefect is responsible for making sure that workflows execute properly.
        
        It also happens to be the name of a roving researcher for that wholly remarkable book, _The Hitchhiker's Guide to the Galaxy_.
        
        ## Installation
        
        ### Requirements
        
        Prefect requires Python 3.5+.
        
        ### Install latest release
        
        ```bash
        pip install prefect
        ```
        
        ### Install bleeding edge
        
        ```bash
        git clone https://github.com/PrefectHQ/prefect.git
        pip install ./prefect
        ```
        
        ## License
        
        Prefect is licensed under the Apache Software License version 2.0.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Monitoring
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Provides-Extra: twitter
Provides-Extra: dev
Provides-Extra: all_extras
Provides-Extra: airtable
Provides-Extra: aws
Provides-Extra: kubernetes
Provides-Extra: google
Provides-Extra: viz
Provides-Extra: templates
