-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.23 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
[build-system]
requires = ["setuptools>=78.1.1", "wheel", "Cython>=3.1.2","numpy>=2.3.1","scikit-learn>=1.6.1" ]
build-backend = "setuptools.build_meta"
[project]
name = "woodtapper"
authors = [
{name = "Abdoulaye SAKHO", email = "abdoulaye7020@gmail.com"},
{name = "artefactory", email = "abdoulaye.sakho@artefact.com"},
]
version = "0.0.14"
description = "A Python toolbox for interpretable and explainable tree ensembles."
readme = "README.md"
license = "MIT"
keywords = ["woodtapper", "interpretable ML", "tree-based models", "Cython"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Software Development"
]
requires-python = ">=3.11,<3.13"
dependencies = [
"numpy>=2.3.1",
"scikit-learn>=1.6.1",
]
[project.urls]
"Homepage" = "https://github.com/artefactory/woodtapper"
"Repository" = "https://github.com/artefactory/woodtapper"
[project.optional-dependencies]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"pre-commit>=4.3.0",
"matplotlib>=3.10.0",
"pandas>=2.3.0",
"ucimlrepo>=0.0.7",
]
docs = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.22",
"mkdocstrings-python>=1.18.2"
]