Files
lab_classification_features/pyproject.toml
Chris Proctor 61eb5a150c Rename classifiers/ package to models/
Aligns module naming with the upcoming classification_neural lab,
which will use the same models/ package convention.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-08 10:57:25 -04:00

20 lines
376 B
TOML

[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", "models"]