forked from sergeyf/SmallDataBenchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 929 Bytes
/
Copy pathpyproject.toml
File metadata and controls
52 lines (47 loc) · 929 Bytes
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
[project]
name = "small-data-benchmarks"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"numpy",
"scipy",
"pandas",
"seaborn",
"scikit-learn",
"lightgbm",
"xgboost",
"catboost",
"optuna",
"matplotlib",
"jupyter",
"category-encoders>=2.9.0",
"autogluon.tabular",
"mljar-supervised",
"torch",
"tabpfn>=7.1.1",
"pytorch-tabnet>=4.1.0",
"rtdl>=0.14.0.dev5",
"tabicl",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
markers = [
"integration: requires dataset files on disk (deselect with -m 'not integration')",
]
addopts = "-v --tb=short"
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.coverage.run]
source = ["benchmark"]
omit = ["tests/*"]