-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (96 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
105 lines (96 loc) · 2.08 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
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
[project]
name = "citrees"
version = "0.1.0"
description = "Conditional inference trees and forests"
authors = [{ name = "Robert Milletich", email = "rmill040@gmail.com" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.12"
dependencies = [
"numpy>=1.24",
"numba>=0.58",
"scikit-learn>=1.4",
"scipy>=1.12",
"dcor>=0.6",
"pydantic>=2.0",
"pyarrow>=22.0.0",
"pandas>=2.3.3",
"loguru>=0.7.3",
"boto3>=1.42.25",
"requests>=2.32.5",
"boruta>=0.4.3",
"lightgbm>=4.6.0",
"xgboost>=3.1.3",
"statsmodels>=0.14.6",
"rpy2>=3.6.4",
"mrmr-selection>=0.2.8",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.4",
"pre-commit>=3.0",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.24",
"pymdown-extensions>=10.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
addopts = "-v --tb=short"
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"tree: tests for tree classes",
"forest: tests for forest classes",
"other: other tests",
]
[tool.coverage.run]
source = ["citrees"]
omit = ["tests/*"]
[tool.typos.default.extend-words]
# Abbreviation for adjust_alpha_selector
aas = "aas"
[dependency-groups]
dev = [
"matplotlib>=3.10.8",
"pytest>=8.0",
"pytest-cov>=4.0",
"ruff>=0.4",
]
paper = [
"boruta>=0.4.3",
"catboost>=1.2",
"lightgbm>=4.6.0",
"loguru>=0.7.3",
"matplotlib>=3.8",
"mrmr-selection>=0.2.8",
"openml>=0.14",
"pyarrow>=15.0",
"pyyaml>=6.0",
"ray[default]>=2.9.0",
"rich>=13.0.0",
"seaborn>=0.13",
"shap>=0.49.1",
"typer>=0.12.0",
"xgboost>=3.1.3",
]
docs = [
"mkdocs>=1.6",
"mkdocs-material>=9.5",
"mkdocstrings[python]>=0.24",
"pymdown-extensions>=10.0",
]