changes for Test-PyPi

This commit is contained in:
BrSh31 2025-11-02 22:17:12 +01:00
parent 9953d2c2ac
commit 21b6b019da
5 changed files with 31 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
git/dist/

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# MatrixMania
A small teaching package for basic linear algebra operations.
## Functions
### `matmul(A, B)`
Matrix multiplication between two 2D lists.
```python
>>> from matrixmania import matmul
>>> matmul([[1, 2]], [[3], [4]])
[[11]]

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_shehibr"
version = "0.1.0"
description = "MatrixMania: Simple linear algebra functions for teaching (matmul, transpose,rot_2D)."
authors = [
{ name="shehibr", email="shehibr98345@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"]