Initial commit

This commit is contained in:
Chris Proctor
2026-06-06 21:36:59 -04:00
commit aaf5b17ad8
14 changed files with 811 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "classification-features"
version = "0.1.0"
description = "Classification: Features lab"
requires-python = ">=3.11"
dependencies = [
"pandas>=2.0",
"scikit-learn>=1.3",
]
[project.scripts]
spam = "cli.main:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cli", "classifiers", "cleaning"]