-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
129 lines (116 loc) · 2.86 KB
/
Copy pathpyproject.toml
File metadata and controls
129 lines (116 loc) · 2.86 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
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
[build-system]
requires = ["setuptools>=61", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "aeon-benchmark"
version = "0.1.0"
description = "A package for benchmarking time series machine learning tools."
authors = [
{name = "Tony Bagnall", email = "a.j.bagnall@soton.ac.uk"},
]
maintainers = [
{name = "Tony Bagnall", email = "a.j.bagnall@soton.ac.uk"},
]
readme = "README.md"
keywords = [
"data-science",
"machine-learning",
"time-series",
"time-series-classification",
"time-series-regression",
"time-series-clustering",
"evaluation",
"benchmarking",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10,<3.14"
dependencies = [
"aeon>=1.0.0,<1.3.0",
"tsml-eval>=0.6.0,<0.8.0",
"scikit-learn>=1.0.0,<1.8.0",
"matplotlib",
"statsmodels",
"statsforecast",
"numba",
]
[project.optional-dependencies]
all_extras = [
"aeon[all_extras]",
"tsml[all_extras]",
]
unstable_extras = [
"aeon[unstable_extras]",
"tsml[unstable_extras]",
]
dev = [
"pre-commit",
"pytest",
"pytest-cov",
"pytest-randomly",
"pytest-timeout",
"pytest-xdist[psutil]",
"pytest-rerunfailures",
]
binder = [
"notebook",
"jupyterlab",
]
[project.urls]
homepage = "https://www.timeseriesclassification.com/"
repository = "https://github.com/aeon/aeon-benchmark/"
[project.license]
file = "LICENSE"
[tool.setuptools.packages.find]
include = ["aeon-benchmark"]
[tool.check-manifest]
ignore = [
# Ignore virtual environments in local builds
".venv/**",
"venv/**",
# Ignore local files
"local/**",
"examples/generated_results/**",
# Ignore the docs symlinks and its contents
"docs/examples",
"docs/examples/**",
"docs/publications",
"docs/publications/**",
]
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.mypy]
ignore_missing_imports = true
follow_imports = "silent"
[tool.pytest.ini_options]
testpaths = "aeon-benchmark"
addopts = '''
--doctest-modules
--durations 20
--timeout 600
--showlocals
--dist worksteal
--reruns 2
--only-rerun "crashed while running"
--meminterval 0.1
'''
[tool.codespell]
ignore-words = ".github/utilities/codespell_ignore_words.txt"
ignore-regex = '(^\s*"image/\S+": ".*|"som")'
skip = ".venv,.idea,.mypy_cache,.git"
check-filenames = true
check-hidden = true