-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 2.19 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 2.19 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "pytimetk"
version = "2.5.0.9000"
description = "The time series toolkit for Python."
authors = [
"Business Science <info@business-science.io>",
"Quant Science <info@quantscience.io>",
"Matt Dancho <mdancho@business-science.io>",
"Justin B. Kurland <justin.b.kurland@gmail.com>",
]
maintainers = [
"Matt Dancho <mdancho@business-science.io>",
"Justin B. Kurland <justin.b.kurland@gmail.com>",
"Jeff Tackes <tackes@gmail.com>",
"Samuel Macêdo <svm.macedo@gmail.com>",
"Lucas Okwudishu <clfo2014@gmail.com>",
"Alex Riggio <alexmriggio@gmail.com>",
]
license = "MIT"
readme = "README.md"
keywords = ["time series", "forecasting", "machine learning", "data science"]
homepage = "https://business-science.github.io/pytimetk/"
repository = "https://github.com/business-science/pytimetk"
documentation = "https://business-science.github.io/pytimetk/reference/"
[tool.poetry.dependencies]
python = ">=3.9"
pandas = [
{ version = ">=2.0.0,<3.0.0", python = ">=3.9,<3.11" },
{ version = ">=2.0.0", python = ">=3.11" },
]
pandas-flavor = ">=0.7.0"
matplotlib = ">=3.8.0"
plotnine = ">=0.12.3"
plotly = ">=5.17.0"
holidays = ">=0.33"
tsfeatures = ">=0.4.5"
statsmodels = ">=0.14.0"
tqdm = ">=4.66.1"
polars = ">=1.2.0"
pyarrow = ">=16.1.0"
adjusttext = ">=0.8"
xarray = ">=2024.6.0" # "<=2023.10.1" https://github.com/pyjanitor-devs/pandas_flavor/issues/33
timebasedcv = ">=0.3"
scikit-learn = ">=1.5.2"
patsy = ">=0.5.6"
"pomegranate" = {version = "<1.0", optional = true}
hmmlearn = ">=0.3.0"
"cudf-cu12" = { version = ">=24.10.0", optional = true, markers = "python_version >= '3.10' and platform_system == 'Linux' and (platform_machine == 'x86_64' or platform_machine == 'aarch64')" }
ray = ">=2.10.0"
[tool.pytest.ini_options]
norecursedirs = ["zzz_local"]
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.25.2"
pytest = "^7.4.2"
[tool.poetry.group.docs.dependencies]
quarto = "^0.1.0"
quartodoc = "^0.7.5"
[tool.poetry.extras]
gpu = ["cudf-cu12"]
gpu_cu12 = ["cudf-cu12"]
regime_backends = ["pomegranate"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "dirty-tag"