-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
108 lines (98 loc) · 2.85 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
[build-system]
requires = ["setuptools>=61", "wheel", "toml", "build"]
build-backend = "setuptools.build_meta"
[project]
name = "tsml"
version = "0.5.0"
description = "A development sandbox for time series machine learning algorithms."
authors = [
{name = "Matthew Middlehurst", email = "m.b.middlehurst@soton.ac.uk"},
]
maintainers = [
{name = "Matthew Middlehurst", email = "m.b.middlehurst@soton.ac.uk"},
]
readme = "README.md"
requires-python = ">=3.9,<3.13"
keywords = [
"data-science",
"machine-learning",
"scikit-learn",
"time-series",
"time-series-classification",
"time-series-regression",
"time-series-clustering",
]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numba>=0.55.0,<0.61.0",
"numpy>=1.21.0,<2.2.0",
"scipy>=1.9.0,<1.14.0",
"pandas>=1.5.3,<2.3.0",
"scikit-learn>=1.0.0,<1.4.0",
"packaging>=20.0",
]
[project.optional-dependencies]
all_extras = [
"grailts",
"scikit-fda>=0.7.0",
"statsmodels>=0.12.1",
"stumpy>=1.6.0",
"wildboar",
]
unstable_extras = [
"pycatch22",
"pyfftw>=0.12.0; python_version < '3.12'", # requires fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html)
"mrsqm>=0.0.7; platform_system == 'Linux' 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 == 'Linux' 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)
]
dev = [
"pre-commit",
"pytest",
"pytest-randomly",
"pytest-timeout",
"pytest-xdist[psutil]",
"pytest-cov",
"pytest-rerunfailures",
]
[project.urls]
homepage = "https://www.timeseriesclassification.com/"
repository = "https://github.com/time-series-machine-learning/tsml-py/"
[project.license]
file = "LICENSE"
[tool.setuptools.packages.find]
include = ["tsml"]
[tool.check-manifest]
ignore = [
# Ignore virtual environments in local builds
"venv/**",
# Ignore local files
"local/**",
]
[tool.ruff.lint]
select = ["D"]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
testpaths = "tsml"
addopts = '''
--doctest-modules
--durations 20
--timeout 600
--showlocals
--dist worksteal
--reruns 2
--only-rerun "crashed while running"
'''