forked from skforecast/skforecast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 1.55 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
31
32
33
34
35
36
37
38
39
################################################################################
# skforecast #
# #
# This work by Joaquin Amat Rodrigo is licensed under a Creative Commons #
# Attribution 4.0 International License. #
################################################################################
import setuptools
import os
import skforecast
VERSION = skforecast.__version__
with open('requirements.txt') as f:
requirements = f.read().splitlines()
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setuptools.setup(
name="skforecast",
version=VERSION,
author="Joaquin Amat Rodrigo",
description="Forecasting time series with scikitlearn regressors. It also works with any regressor compatible with the scikit-learn API (pipelines, CatBoost, LightGBM, XGBoost, Ranger...).",
long_description=read("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/JoaquinAmatRodrigo/skforecast",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License"
],
install_requires=requirements
)