-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.py
48 lines (45 loc) · 1.2 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
40
41
42
43
44
45
46
47
48
from setuptools import setup, find_packages
import shutil
import os
import sys
long_description = open('README.md', 'r', encoding="UTF-8").read()
setup(
name = 'SCALECAST',
version = '0.19.10',
license='MIT',
description="The practitioner's time series forecasting library",
long_description=long_description,
long_description_content_type='text/markdown',
author = 'Michael Keith',
author_email = 'mikekeith52@gmail.com',
packages=find_packages('src'),
package_dir={'': 'src'},
package_data = {
'scalecast':['grids/*'],
},
project_urls = {
'GitHub': 'https://github.com/mikekeith52/scalecast',
'Read the Docs': 'https://scalecast.readthedocs.io/en/latest/',
'Examples': 'https://scalecast-examples.readthedocs.io/en/latest/',
},
url = 'https://github.com/mikekeith52/scalecast',
keywords = ['FORECASTING','DEEP LEARNING','TIME SERIES','MACHINE LEARNING','EASY'],
install_requires = [
'scikit-learn>=1.3.1',
'statsmodels',
'tbats',
'scipy',
'numpy',
'pandas',
'scipy',
'matplotlib',
'seaborn>=0.13.0',
'xgboost',
'lightgbm>=3.2.1',
'dask>=2023.3.2',
'catboost',
'openpyxl',
'shap',
'threadpoolctl>=3.0',
],
)