Initial commit: DV homework_2

This commit is contained in:
2026-03-14 15:24:57 +08:00
commit 3c1f431ca9
38 changed files with 1580 additions and 0 deletions

20
pyproject.toml Normal file
View File

@@ -0,0 +1,20 @@
[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"]