forked from Nixtla/nixtla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.11 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
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
dev = ["black", "nbdev", "plotly", "python-dotenv", "statsforecast"]
distributed = ["dask", "fugue[ray]>=0.8.7", "pyspark", "ray[serve-grpc]"]
plotting = ["utilsforecast[plotting]>=0.0.5"]
date_extras = ["holidays"]
setuptools.setup(
name="nixtlats",
version="0.1.20",
description="TimeGPT SDK",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Nixtla/nixtla",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=[
"httpx",
"pandas",
"pydantic<2",
"requests",
"tenacity",
"utilsforecast>=0.0.13",
],
extras_require={
"dev": dev + distributed + plotting + date_extras,
"distributed": distributed,
"plotting": plotting,
"date_extras": date_extras,
},
)