Paketerstellungsaufgabe

This commit is contained in:
Thomas Fischer 2025-11-06 15:53:32 +01:00
parent 5acd1333fe
commit 3880163b92
4 changed files with 28 additions and 0 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# Meine Matrixmania
Dieses Modul macht Matrixsachen
---Funktionen die es gibt sind:
def matmul(mA:list[list[int]], mB:list[list[int]]) -> list[list[int]]:
def transpose(matrix:list[list[int]]) -> list[list[int]]:
def rot_2D(bogenmaß: float) -> list[list[float]]:

1
matrixmania/__init__.py Normal file
View File

@ -0,0 +1 @@
from .compute import matmul, transpose, rot_2D

16
pyproject.toml Normal file
View File

@ -0,0 +1,16 @@
[project]
name = "matrixmania_fischerth80683"
version = "0.1.0"
description = "MatrixMania: Simple linear algebra functions for teaching (matmul, transpose,rot_2D)."
authors = [
{ name="Dein Name", email="deine.mail@th-nuernberg.de" }
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.7"
dependencies = ["tabulate"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["matrixmania"]