21 lines
440 B
TOML
21 lines
440 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "float-index-sort-lab"
|
|
version = "0.1.0"
|
|
description = "Course project for float32 index sorting with pure Python and NumPy"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"matplotlib>=3.9",
|
|
"numpy>=2.1",
|
|
]
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|