-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
77 lines (72 loc) · 1.91 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
[build-system]
requires = ["setuptools>77.0.3", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["tslearn"]
dynamic.version = {attr = "tslearn.__version__"}
[project]
name = "tslearn"
description= "A machine learning toolkit dedicated to time-series data"
authors = [
{name="Romain Tavenard", email="romain.tavenard@univ-rennes2.fr"}
]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.10"
license = "BSD-2-Clause"
license-files = ["LICENSE"]
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"scikit-learn>=1.4",
"numpy>=1.24.3",
"scipy>=1.10.1",
"numba>=0.61",
"joblib>=1.2"
]
[project.urls]
documentation = "http://tslearn.readthedocs.io"
source = "https://github.com/tslearn-team/tslearn"
issues = "https://github.com/tslearn-team/tslearn/issues"
changelog = "https://github.com/tslearn-team/tslearn/CHANGELOG.md"
[project.optional-dependencies]
pytorch = ['torch']
tests = [
"pytest",
"h5py"
]
docs = [
"sphinx",
"pydata_sphinx_theme",
"sphinx-gallery",
"sphinx_copybutton",
"numpydoc",
"matplotlib",
"pypandoc",
]
all_features = [
"torch",
# Torch dropped support of macOS intel after version 2.2.2
# which does not support numpy 2+
"numpy<2; 'darwin' in sys_platform and 'x86_64' in platform_machine",
"h5py",
# Torch dropped support of macOS intel after version 2.2.2
# which does not support keras 3.12+
"keras<3.12; 'darwin' in sys_platform and 'x86_64' in platform_machine",
"keras",
"cesium",
"pandas",
"stumpy",
]
[tool.pytest.ini_options]
minversion = "7"
testpaths = [
"tests",
"tslearn"
]