forked from aeon-toolkit/aeon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
182 lines (169 loc) · 4.31 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
[build-system]
requires = ["setuptools>61", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "aeon"
version = "0.11.1"
description = "A toolkit for machine learning from time series"
authors = [
{name = "aeon developers", email = "[email protected]"},
]
maintainers = [
{name = "aeon developers", email = "[email protected]"},
]
readme = "README.md"
keywords = [
"data-science",
"machine-learning",
"data-mining",
"time-series",
"scikit-learn",
"forecasting",
"time-series-analysis",
"time-series-classification",
"time-series-clustering",
"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",
"Development Status :: 5 - Production/Stable",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.9,<3.13"
dependencies = [
"deprecated>=1.2.13",
"numba>=0.55,<0.61.0",
"numpy>=1.21.0,<2.1.0",
"packaging>=20.0",
"pandas>=2.0.0,<2.3.0",
"scikit-learn>=1.0.0,<1.6.0",
"scipy>=1.9.0,<1.15.0",
"typing-extensions>=4.6.0",
]
[project.optional-dependencies]
# soft dependencies
all_extras = [
"esig>=0.9.7; platform_system != 'Darwin' and python_version < '3.11'",
"imbalanced-learn",
"matplotlib>=3.3.2",
"pycatch22>=0.4.5",
"pyod>=1.1.3",
"prts>=1.0.0.0",
"pydot>=2.0.0",
"ruptures>=1.1.9",
"seaborn>=0.11.0",
"statsmodels>=0.12.1",
"stumpy>=1.5.1",
"tensorflow>=2.14",
"torch>=1.13.1",
"tsfresh>=0.20.0",
"tslearn>=0.5.2",
"sparse"
]
dl = [
"tensorflow>=2.14",
]
unstable_extras = [
"mrsqm>=0.0.7,<0.1.0; platform_system != 'Windows' and python_version < '3.12'", # requires gcc and fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html)
"mrseql>=0.0.4,<0.1.0; platform_system != 'Windows' and python_version < '3.12'", # requires gcc and fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html)
]
# development dependencies
dev = [
"backoff",
"httpx",
"pre-commit",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-randomly",
"pytest-timeout",
"pytest-xdist[psutil]",
"pytest-rerunfailures",
"wheel",
]
binder = [
"notebook",
"jupyterlab",
]
docs = [
"sphinx<8.2.0",
"sphinx-design",
"sphinx-version-warning",
"sphinx_issues",
"sphinx-copybutton",
"sphinxext-opengraph",
"nbsphinx",
"numpydoc",
"myst-parser",
"jupyter",
"furo",
"tabulate",
"matplotlib",
]
[project.urls]
Homepage = "https://www.aeon-toolkit.org"
Repository = "https://github.com/aeon-toolkit/aeon"
Documentation = "https://www.aeon-toolkit.org"
Changelog = "https://www.aeon-toolkit.org/en/stable/changelog.html"
Download = "https://pypi.org/project/aeon/#files"
API = "https://www.aeon-toolkit.org/en/stable/api_reference.html"
[project.license]
file = "LICENSE"
[tool.setuptools]
zip-safe = true
[tool.setuptools.package-data]
aeon = [
"*.csv",
"*.csv.gz",
"*.arff",
"*.arff.gz",
"*.txt",
"*.ts",
"*.tsv",
]
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]
[tool.check-manifest]
ignore = [
# Ignore virtual environments in local builds
"venv/**",
# Ignore the docs symlink and its contents
"docs/examples",
"docs/examples/**",
]
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.mypy]
mypy_path = "aeon/"
[tool.pytest.ini_options]
# ignore certain folders and pytest warnings
testpaths = "aeon"
addopts = '''
--doctest-modules
--durations 20
--timeout 600
--showlocals
--dist worksteal
--reruns 2
--only-rerun "crashed while running"
'''
filterwarnings = '''
ignore::UserWarning
ignore:numpy.dtype size changed
ignore:numpy.ufunc size changed
'''