Metadata-Version: 2.4
Name: tensorflew
Version: 0.1.6
Summary: A Python package for time series forecasting techniques
Home-page: https://github.com/yourusername/tensorflew
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: matplotlib
Requires-Dist: statsmodels
Requires-Dist: scikit-learn
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# TensorFlew

A Python package for time series forecasting techniques including Simple Exponential Smoothing, Simple Moving Average, and Holt-Winters methods.

## Installation

```bash
pip install tensorflew
```

## Usage

```python
from tensorflew import all

all()  # Display all available content and examples
```
