Create project

This commit is contained in:
Laborratte 5 2025-05-31 18:47:40 +02:00
commit 7d095d1237
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02
6 changed files with 312 additions and 0 deletions

22
pyproject.toml Normal file
View file

@ -0,0 +1,22 @@
[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 = [
"xlrd (>=2.0.1,<3.0.0)",
"pandas (>=2.2.3,<3.0.0)"
]
[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"