-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 1.11 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xgboost2ww"
version = "0.1.1"
description = "Compute WeightWatcher-style correlation matrices (W1/W2/W7/W8) for XGBoost via OOF margin increments."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{name = "Charles H. Martin, PhD"}]
keywords = ["xgboost", "weightwatcher", "spectral", "correlation", "matrix", "oof"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.23",
"xgboost>=1.7",
"scikit-learn>=1.2",
]
[project.optional-dependencies]
torch = ["torch>=2.0"]
dev = ["pytest>=7.0", "build>=1.0", "ruff>=0.3.0"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
[project.urls]
Homepage = "https://github.com/CalculatedContent/xgboost2ww"
Repository = "https://github.com/CalculatedContent/xgboost2ww"
Issues = "https://github.com/CalculatedContent/xgboost2ww/issues"