Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

32
alveslib/project.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "alveslib",
"root": "alveslib",
"sourceRoot": "alveslib",
"projectType": "library",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"command": "python3.12 -m compileall alveslib"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"command": ".venv/bin/ruff check alveslib"
}
},
"typecheck": {
"executor": "nx:run-commands",
"options": {
"command": ".venv/bin/mypy alveslib"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"command": ".venv/bin/pytest alveslib -v"
}
}
}
}