forked from divo12/sktime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
130 lines (121 loc) · 2.96 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[project]
name = "sktime"
version = "0.13.4"
description = "A unified framework for machine learning with time series"
authors = [
{name = "Franz Király", email = "[email protected]"},
{name = "Tony Bagnall", email = "[email protected]"},
{name = "Markus Löning"},
{name = "Martin Walter"},
]
maintainers = [
{name = "Franz Király", email = "[email protected]"},
{name = "Martin Walter"},
]
readme = "README.md"
keywords = [
"data-science",
"machine-learning",
"data-mining",
"time-series",
"scikit-learn",
"forecasting",
"time-series-analysis",
"time-series-classification",
"time-series-regression",
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.7,<3.11"
dependencies = [
"deprecated>=1.2.13",
"numba>=0.53",
"numpy>=1.21.0,<1.23",
"pandas>=1.1.0,<1.6.0",
"scikit-learn>=0.24.0,<1.2.0",
"statsmodels>=0.12.1",
"scipy<2.0.0",
]
[project.optional-dependencies]
all_extras = [
"dtw-python",
"esig==0.9.7; python_version < '3.10'",
"filterpy>=1.4.5",
"hmmlearn>=0.2.7",
"gluonts>=0.9.0",
"keras-self-attention",
"matplotlib>=3.3.2",
"mne",
"pmdarima>=1.8.0,!=1.8.1,<3.0.0",
"prophet>=1.1",
"pykalman>=0.9.5",
"pyod>=0.8.0",
"scikit_posthocs>=0.6.5",
"seaborn>=0.11.0",
"statsforecast>=0.5.2",
"stumpy>=1.5.1",
"tbats>=1.1.0",
"tensorflow-probability",
"tensorflow",
"tsfresh>=0.17.0; python_version < '3.10'",
"tslearn>=0.5.2",
"xarray",
]
dev = [
"backoff",
"httpx",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-randomly",
"pytest-timeout",
"pytest-xdist",
"wheel",
]
binder = [
"jupyter",
]
docs = [
"jupyter",
"myst-parser",
"nbsphinx>=0.8.6",
"numpydoc",
"pydata-sphinx-theme",
"sphinx_issues==1.2.0",
"sphinx-gallery==0.6.0",
"sphinx-panels==0.6.0",
"sphinx==4.1.1",
"tabulate",
]
dl = [
"tensorflow",
"tensorflow-probability",
]
[project.urls]
homepage = "https://www.sktime.org"
repository = "https://github.com/sktime/sktime"
documentation = "https://www.sktime.org"
download = "https://pypi.org/project/sktime/#files"
[project.license]
file = "LICENSE"
[build-system]
requires = ["setuptools", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[tool.nbqa.exclude]
black = "^docs/source/examples/"
flake8 = "^docs/source/examples/"
isort = "^docs/source/examples/"