Metadata-Version: 2.1
Name: time-series-predictor
Version: 1.3.2
Summary: Time Series Predictor
Home-page: https://timeseriespredictor.readthedocs.io/
Author: Daniel Kaminski de Souza
Author-email: daniel@kryptonunite.com
License: UNKNOWN
Description: # Time Series Predictor
        
        [![PyPI version](https://badge.fury.io/py/time-series-predictor.svg)](https://badge.fury.io/py/time-series-predictor) [![Documentation Status](https://readthedocs.org/projects/timeseriespredictor/badge/?version=latest)](https://timeseriespredictor.readthedocs.io/en/latest/?badge=latest) [![travis](https://travis-ci.org/DanielAtKrypton/time_series_predictor.svg?branch=master)](https://travis-ci.org/github/DanielAtKrypton/time_series_predictor) [![codecov](https://codecov.io/gh/DanielAtKrypton/time_series_predictor/branch/master/graph/badge.svg)](https://codecov.io/gh/DanielAtKrypton/time_series_predictor) [![Requirements Status](https://requires.io/github/DanielAtKrypton/time_series_predictor/requirements.svg?branch=master)](https://requires.io/github/DanielAtKrypton/time_series_predictor/requirements/?branch=master) [![GitHub license](https://img.shields.io/github/license/DanielAtKrypton/time_series_predictor)](https://github.com/DanielAtKrypton/time_series_predictor)
        
        ## Usage
        
        Please refer to the following examples:
        
        - [example_flights_dataset.ipynb](https://github.com/DanielAtKrypton/time_series_predictor/blob/master/docs/source/notebooks/example_flights_dataset.ipynb)
        - [example_oze_challenge.ipynb](https://github.com/DanielAtKrypton/time_series_predictor/blob/master/docs/source/notebooks/example_oze_challenge.ipynb)
        
        ## Development
        
        ### Pre requisistes installation
        
        #### Windows
        
        ```powershell
        python -m venv .\.env
        .\.env\Scripts\activate
        pip install -e .[dev]
        ```
        
        #### Linux or MacOS
        
        ```bash
        python -m venv .env
        . .env/bin/activate
        pip install -e .[dev]
        ```
        
        ------
        
        ### Test
        
        ```bash
        pip install -e .[test]
        pytest -s
        ```
        
        ------
        
        ### Build docs
        
        ```bash
        pip install -e .[docs]
        cd docs
        # make html
        sphinx-build ./docs/source ./docs/build
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: docs
Provides-Extra: test
Provides-Extra: dev
