-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
71 lines (65 loc) · 1.8 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "triglav"
version = "1.0.7"
authors = [
{name = "Josip Rudar", email = "[email protected]"},
{name = "Peter Kruczkiewicz"},
{name = "G. Brian Golding"},
{name = "Oliver Lung"},
{name = "Mehrdad Hajibabaei", email = "[email protected]"}
]
description = "Triglav: Iterative Refinement and Selection of Stable Features Using Shapley Values"
keywords = [
"ecology",
"multivariate statistics",
"feature selection",
"stability selection"
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"matplotlib >= 3.4.3",
"numpy >= 1.26",
"scikit-learn >= 1.0.1",
"statsmodels >= 0.12.0",
"shap >= 0.40.0",
"sage-importance >= 0.0.5",
"scipy >= 1.7.3",
"joblib >= 1.1.0",
"imbalanced-learn >= 0.10.1"
]
[project.urls]
"Homepage" = "https://github.com/jrudar/Triglav"
"Repository" = "https://github.com/jrudar/Triglav.git"
"Bug Tracker" = "https://github.com/jrudar/Triglav/issues"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"ruff",
"twine",
]
test = [
"pytest",
"pytest-cov"
]
[tool.pytest.ini_options]
addopts = "--cov --cov-report html --cov-report term-missing --cov-fail-under 70"
[tool.coverage.run]
source = ["triglav"]