Create project
This commit is contained in:
commit
7d095d1237
6 changed files with 312 additions and 0 deletions
22
pyproject.toml
Normal file
22
pyproject.toml
Normal 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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue