24 lines
556 B
TOML
24 lines
556 B
TOML
[project]
|
|
name = "cluster-test"
|
|
version = "0.1.0"
|
|
description = "Cluster data from excel sheets"
|
|
authors = [
|
|
{name = "Laborratte5",email = "laborratte5@gmail.com"}
|
|
]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"pandas (>=2.2.3,<3.0.0)",
|
|
"openpyxl (>=3.1.5,<4.0.0)",
|
|
"scikit-learn (>=1.6.1,<2.0.0)",
|
|
"matplotlib (>=3.9)"
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [{include = "cluster_test", from = "src"}]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|