-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (51 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
62 lines (51 loc) · 1.09 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
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[project]
name = 'driftbench'
authors = [
{ name = 'Edgar Wolf', email = 'edgar.wolf@hs-kempten.de' },
{ name = 'Tobias Windisch', email = 'tobias.windisch@hs-kempten.de' },
]
maintainers = [
{ name = 'Edgar Wolf', email = 'edgar.wolf@hs-kempten.de' },
]
description = 'Python tool to analyse process drifts'
dynamic = ['version']
readme = "README.md"
dependencies = [
"jaxlib",
"jax",
"matplotlib==3.7.2",
"numpy==1.24.4",
"pandas==2.0.3",
"scikit_learn==1.3.0",
"scipy==1.12.0",
"setuptools==68.1.2",
"torch>=1.13.1",
"pyyaml",
]
[project.optional-dependencies]
dev = [
"pytest",
"mkdocs",
"mkdocs-material",
"mkdocstrings-python",
"mike",
]
cuda = ["jax[cuda]"]
[tool.setuptools.packages.find]
include = ['driftbench*']
[tool.setuptools.dynamic]
version = { file = 'VERSION' }
[tool.ruff]
select = [
'E', # pycodestyle
'F', # pyflakes
'UP', # pyupgrade
'D', # pydocstyle
'PL', # pylint
]
line-length = 120
[tool.ruff.pydocstyle]
convention = 'google'