Metadata-Version: 2.1
Name: prefect
Version: 0.6.2
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://codecov.io/gh/PrefectHQ/prefect">
          <img src="https://codecov.io/gh/PrefectHQ/prefect/branch/master/graph/badge.svg" />
        </a>
        
        <a href=https://github.com/ambv/black>
            <img src="https://img.shields.io/badge/code%20style-black-000000.svg">
        </a>
        
        <a href="https://pypi.org/project/prefect/">
            <img src="https://img.shields.io/pypi/dm/prefect.svg?color=%2327B1FF&label=installs&logoColor=%234D606E">
        </a>
        
        <a href="https://hub.docker.com/r/prefecthq/prefect">
            <img src="https://img.shields.io/docker/pulls/prefecthq/prefect.svg?color=%2327B1FF&logoColor=%234D606E">
        </a>
        
        <a href="https://join.slack.com/t/prefect-public/shared_invite/enQtNzE5OTU3OTQwNzc1LTQ5M2FkZmQzZjI0ODg1ZTBmOTc0ZjVjYWFjMWExZDAyYzBmYjVmMTE1NTQ1Y2IxZTllOTc4MmI3NzYxMDlhYWU">
            <img src="https://img.shields.io/static/v1.svg?label=chat&message=on%20slack&color=27b1ff&style=flat">
        </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](https://join.slack.com/t/prefect-public/shared_invite/enQtNzE5OTU3OTQwNzc1LTQ5M2FkZmQzZjI0ODg1ZTBmOTc0ZjVjYWFjMWExZDAyYzBmYjVmMTE1NTQ1Y2IxZTllOTc4MmI3NzYxMDlhYWU)!
        
        ```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
        
        Prefect's documentation -- including concepts, tutorials, and a full API reference -- is always available at [docs.prefect.io](https://docs.prefect.io).
        
        Instructions for contributing to documentation can be found in the [development guide](https://docs.prefect.io/guide/development/documentation.html).
        
        ## Contributing
        
        Read about Prefect's [community](https://docs.prefect.io/guide/welcome/community.html) or dive in to the [development guides](https://docs.prefect.io/guide/development/overview.html) for information about contributions, documentation, code style, and testing.
        
        Join our [Slack](https://join.slack.com/t/prefect-public/shared_invite/enQtNzE5OTU3OTQwNzc1LTQ5M2FkZmQzZjI0ODg1ZTBmOTc0ZjVjYWFjMWExZDAyYzBmYjVmMTE1NTQ1Y2IxZTllOTc4MmI3NzYxMDlhYWU) to chat about Prefect, ask questions, and share tips.
        
        Prefect is committed to ensuring a positive environment. All interactions are governed by our [Code of Conduct](https://docs.prefect.io/guide/welcome/code_of_conduct.html).
        
        ## "...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.2+.
        
        ### Install latest release
        
        Using `pip`:
        
        ```bash
        pip install prefect
        ```
        
        or `conda`:
        
        ```bash
        conda install -c conda-forge prefect
        ```
        
        or `pipenv`:
        ```
        pipenv install --pre 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.2
Description-Content-Type: text/markdown
Provides-Extra: spacy
Provides-Extra: dev
Provides-Extra: redis
Provides-Extra: kubernetes
Provides-Extra: airtable
Provides-Extra: dropbox
Provides-Extra: rss
Provides-Extra: snowflake
Provides-Extra: templates
Provides-Extra: twitter
Provides-Extra: all_extras
Provides-Extra: viz
Provides-Extra: google
Provides-Extra: azure
Provides-Extra: postgres
Provides-Extra: aws
