-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (48 loc) · 1.27 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
54
[tool.poetry]
name = "pymodeltime"
version = "0.0.0.9000"
description = "The time series machine learning toolkit for Python."
authors = [
"Shafiullah Qureshi <[email protected]>",
"Matt Dancho <[email protected]>"
]
maintainers = [
"Shafiullah Qureshi <[email protected]>",
"Matt Dancho <[email protected]>",
"Plamen Rabadzhiyski <[email protected]>"
]
include = ["data/*"]
license = "LICENSE"
readme = "README.md"
keywords = ["time series", "forecasting", "machine learning", "data science"]
repository = "https://github.com/business-science/pymodeltime"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
pandas = ">=1.5.3"
# statsmodels = "*"
# scikit-learn = ">=0.23"
# xgboost = "*"
# prophet = "*"
# pmdarima = "*"
# mlforecast = "*"
# autogluon = "*"
# torch = ">=2.0.0"
# torchvision = "*"
# h2o = "*"
pytimetk = "^0.3.0"
scikit-learn = "^1.4.0"
xgboost = "^2.0.3"
statsmodels = "^0.14.1"
prophet = "^1.1.5"
mlforecast = "^0.11.6"
statsforecast = "^1.7.2"
pmdarima = "^2.0.4"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
pytest = "^7.4.2"
[tool.poetry.group.docs.dependencies]
quarto = "^0.1.0"
quartodoc = "^0.6.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"