-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (37 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tsproto"
version = "0.3.0"
description = "Post-host prototype-based explanations with rules for time-series classifiers"
readme = "README.md"
authors = [{ name = "Szymon Bobek", email = "szymon.bobek@gmail.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["xai", "time-series","explainability", "model-agnostic", "rule-based"]
dependencies = ["pandas>=1.4.3",
"numpy>=1.22.4,<2.0",
"scikit-learn>=1.1.1",
"matplotlib>=3.5.2",
"matplotlib-inline>=0.1.3",
"seaborn>=0.11.2",
"graphviz>=0.20",
"shap>=0.41.0",
"ruptures>=1.1.8",
"tslearn>=0.6.1",
"kshape>=1.0.6",
"sktime>=0.29.0",
"scikit-learn-extra>=0.3.0"
]
requires-python = ">=3.8"
[project.optional-dependencies]
gpu = ["torch>=2.0.1"]
[project.urls]
Homepage = "https://github.com/sbobek/tsproto"
Documentation = "https://tsproto.readthedocs.org"
Issues = "https://github.com/sbobek/tsproto/issues"