Metadata-Version: 2.1
Name: easyprophet
Version: 1.0.5
Summary: Python package developed to simplify Prophet application to any data.
Home-page: https://github.com/federicodecillia/easyprophet
Author: Federico De Cillia
License: UNKNOWN
Description: # easyprophet: Simplified Automatic Forecasting Procedure
        [![Pypi_Version](https://img.shields.io/pypi/v/easyprophet.svg)](https://pypi.python.org/pypi/easyprophet)
        [![GitHub license](https://img.shields.io/github/license/federicodecillia/easyprophet)](https://github.com/federicodecillia/easyprophet/blob/main/LICENSE)
        [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](code_of_conduct.md)
        [![Build Status](https://travis-ci.com/federicodecillia/easyprophet.svg?branch=main)](https://travis-ci.com/federicodecillia/easyprophet)
        [![Coverage Status](https://coveralls.io/repos/github/federicodecillia/easyprophet/badge.svg?branch=main)](https://coveralls.io/github/federicodecillia/easyprophet?branch=main)
        [![GitHub issues](https://img.shields.io/github/issues/federicodecillia/easyprophet)](https://github.com/federicodecillia/easyprophet/issues)
        
        Python package developed to simplify [**Prophet**](https://facebook.github.io/prophet/) application to any data. \
        It completely relies on the [**Prophet package**](https://github.com/facebook/prophet) and on its updates.
        
        
        # Installation
        The package is normally released on pypy, you can find it [**here**](https://pypi.org/project/easyprophet/), and install it easily on your environment by typing:
        `pip install easyprophet`
        
        fbprophet has its own installation instructions, please refer [here](https://facebook.github.io/prophet/docs/installation.html). \
        In short these are the recommended ordered steps to correctly install fbprophet:
        1. install c++ compiler: `conda install libpython m2w64-toolchain -c msys2`
        2. install pystan: `pip install pystan`
        3. install fbprophet: `pip install fbprophet`
        
        # Project Structure
        
        ```
        .
        - config                 <- Configuration files
        - docs                   <- Documentation
        - notebooks              <- Jupyter/Colab Notebooks containing easyprophet examples
        - src                    <- Source code for easy_prophet
            - easyprophet
                - __init__.py    <- To initialize easyprophet package
                - easyprophet.py <- Core easyprophet clasees & functions
                - hello_world.py <- module to test if the installation works
                - tools          <- Other helper scripts        
        - tests                  <- Test suite
        - .gitignore             <- Specifies intentionally untracked files to ignore
        - AUTHORS.md             <- Credits
        - LICENSE                <- License 
        - README.md              <- Contains info & links about the project
        - requirements.txt       <- Package dependencies
        - setup.py               <- Build script for setuptools (to make the pack pip installable)
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.6
Description-Content-Type: text/markdown
