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>
20 lines
376 B
TOML
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"]
|