forked from skforecast/skforecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (25 loc) · 1.03 KB
/
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
26
27
28
29
30
################################################################################
# skforecast #
# #
# This work by Joaquín Amat Rodrigo is licensed under a Creative Commons #
# Attribution 4.0 International License. #
################################################################################
import setuptools
import skforecast
VERSION = skforecast.__version__
setuptools.setup(
name="skforecast",
version=VERSION,
author="Joaquin Amat Rodrigo",
author_email="[email protected]",
description="Forecasting time series with scikitlearn regressors",
url="https://github.com/JoaquinAmatRodrigo/skforecast",
packages=setuptools.find_packages(),
classifiers=[],
install_requires=[
'numpy>=1.20.1',
'pandas>=1.2.2',
'tqdm>=4.57.0',
'scikit-learn>=0.24'
]
)