initial commit

This commit is contained in:
2025-10-07 18:22:35 +02:00
commit c19876ed78
34 changed files with 3866 additions and 0 deletions

15
shell.nix Normal file
View File

@@ -0,0 +1,15 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
python3
python3Packages.notebook
python3Packages.numpy
python3Packages.matplotlib
graphviz
python3Packages.networkx
python3Packages.pydot
];
}