-
Notifications
You must be signed in to change notification settings - Fork 115
/
setup.py
40 lines (38 loc) · 1.12 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="auto_ts",
version="0.0.92",
author="Ram Seshadri",
# author_email="author@example.com",
description="Automatically Build Multiple Time Series models fast - now with Facebook Prophet!",
long_description=long_description,
long_description_content_type="text/markdown",
license='Apache License 2.0',
url="https://github.com/AutoViML/Auto_TS",
packages=setuptools.find_packages(exclude=("auto_ts/test",)),
install_requires=[
"ipython",
"jupyter",
"pmdarima",
"numpy",
"xlrd",
"pandas",
"matplotlib",
"seaborn",
"prophet",
"scikit-learn>=0.24.0",
"statsmodels",
"xgboost>=2.0",
"prettytable",
"dask>=2022.1.0",
"pyyaml>=5.4.1",
"GPUtil>=1.4.0",
"distributed>=2022.2.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)