-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathpyproject.toml
53 lines (50 loc) · 1.12 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "autots"
version = "0.6.17"
authors = [
{ name="Colin Catlin", email="[email protected]" },
]
description = "Automated Time Series Forecasting"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.14.6",
"pandas>=0.25.0",
"statsmodels>=0.10.0",
"scikit-learn>=0.20.0",
]
[project.optional-dependencies]
additional = [
"holidays>=0.9",
'prophet>=0.4.0',
'fredapi',
'tensorflow',
'xgboost>=1.6',
'lightgbm',
'joblib',
'scipy',
'arch',
'numexpr',
'bottleneck',
'yfinance',
'pytrends',
'matplotlib',
'requests',
'seaborn',
]
[project.urls]
"Homepage" = "https://github.com/winedarksea/AutoTS"
"Bug Tracker" = "https://github.com/winedarksea/AutoTS/issues"
[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters
[tool.setuptools]
include-package-data = true