-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
23 lines (19 loc) · 827 Bytes
/
Copy pathpyproject.toml
File metadata and controls
23 lines (19 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "groupweight"
version = "0.1.0"
description = "Weight whole FEATURE GROUPS (blocks) by their cross-fold contribution to generalization — group-level (not per-feature) shrinkage for data with natural feature families, held-out + null validated so a reported gain is real, not memorized. numpy-only."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "Amarel Taylor Scott" }]
keywords = ["machine-learning", "feature-weighting", "feature-groups", "group-shrinkage", "robust", "tabular", "kaggle"]
dependencies = ["numpy>=1.21"]
[project.scripts]
groupweight = "groupweight.cli:main"
[project.optional-dependencies]
dev = ["pytest"]
[tool.setuptools]
packages = ["groupweight"]