-
Notifications
You must be signed in to change notification settings - Fork 102
/
setup.py
53 lines (49 loc) · 1.19 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
49
50
51
52
53
import setuptools
required = [
"numpy>=1.14.6",
"pandas>=0.25.0",
"statsmodels>=0.10.0",
"scikit-learn>=0.20.0",
]
extras = {
'additional': [
"holidays>=0.9",
'prophet>=0.4.0',
'fredapi',
'tensorflow',
'xgboost',
'lightgbm',
'joblib',
'scipy',
'arch',
'numexpr',
'bottleneck',
'yfinance',
'pytrends',
'matplotlib',
'requests',
]
}
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="AutoTS",
version="0.6.17",
author="Colin Catlin",
author_email="[email protected]",
description="Automated Time Series Forecasting",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/winedarksea/AutoTS",
packages=setuptools.find_packages(),
license="MIT",
include_package_data=True,
install_requires=required,
extras_require=extras,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)