project setup

This commit is contained in:
tilo 2025-10-30 15:46:54 +01:00
parent 67eb44796c
commit a3897ab4d4
4 changed files with 19 additions and 0 deletions

1
.gitignore vendored Normal file
View File

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

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

1
readme.md Normal file
View File

@ -0,0 +1 @@
To be written