-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
106 lines (100 loc) · 1.99 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
[build-system]
requires=["flit_core >=3.2,<4"]
build-backend="flit_core.buildapi"
[project]
name="time_interpret"
version="0.3.0"
authors=[
{name="Joseph Enguehard", email="joseph@skippr.com"},
]
description="Model interpretability library for PyTorch with a focus on time series."
readme="README.md"
requires-python=">=3.7"
keywords=[
"deep-learning",
"pytorch",
"captum",
"explainable-ai",
"time-series",
]
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies=[
"captum",
"numpy",
"pandas",
"pytorch-lightning",
"scikit-learn",
"scipy",
"torch",
]
[project.optional-dependencies]
graphgym=[
"fasttext",
"google",
"jupyter",
"optuna",
"pandarallel",
"psycopg2",
"scikit-image",
"statsmodels",
"tick",
"torchmetrics",
"torchvision",
"tqdm",
"transformers",
]
modelhub=[
"huggingface_hub"
]
test=[
"pytest",
"pytest-cov",
"pytest-mock",
]
full = [
"captum",
"numpy",
"pandas",
"pytorch-lightning",
"scikit-learn",
"scipy",
"torch",
"fasttext",
"google",
"jupyter",
"optuna",
"pandarallel",
"psycopg2",
"scikit-image",
"statsmodels",
"tick",
"torchmetrics",
"torchvision",
"tqdm",
"transformers",
"huggingface_hub",
"pytest",
"pytest-cov",
"pytest-mock",
]
[project.urls]
homepage="https://github.com/josephenguehard/time_interpret"
documentation="https://josephenguehard.github.io/time_interpret"
[tool.flit.module]
name="tint"
[tool.flit.sdist]
exclude = [
"tint/data/*"
]
[tool.flake8]
ignore = ["F811", "W503", "W504"]