-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 937 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup
#with open('requirements.txt') as f:
# requirements = f.read().splitlines()
setup(
name='ts_forecaster_smile',
version='0.1.19',
author='Thomas Jaillon',
author_email='[email protected]',
description='ts_forecaster is a library designed to forecast time series data. Using different models and algorithms such as XGBoost, LSTM, and SARIMA as well as ensemble learning methods and evaluation metrics',
packages=['src/models', 'src/processing_forecasts'],
install_requires=["matplotlib",
"numpy",
"pandas",
"protobuf",
"scikit-learn",
"seaborn",
"statsmodels",
"xgboost",
"tensorflow",
"keras",
"platypus-opt",
"scikit-learn"],
)