23 lines
445 B
TOML
23 lines
445 B
TOML
[project]
|
|
name = "classification-neural"
|
|
version = "0.1.0"
|
|
description = "Classification: Neural Networks lab"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"numpy>=1.24",
|
|
"pandas>=2.0",
|
|
"scikit-learn>=1.3",
|
|
"torch>=2.0",
|
|
"torchvision>=0.15",
|
|
]
|
|
|
|
[project.scripts]
|
|
digits = "cli.main:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["cli", "models"]
|