mkproj: tag pyproject with workspace/owner, drop .gitignore, dev deps, initial commit; add global gitignore

This commit is contained in:
root
2026-05-20 22:02:37 +02:00
parent ff2c992a4c
commit bb5a643c71
3 changed files with 48 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
# Python
__pycache__/
*.py[cod]
*.class
*.so
.Python
build/
dist/
*.egg-info/
*.egg
# uv / venv
.venv/
venv/
.uv-cache/
# Tests / coverage
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
# Ruff / ty / mypy cache
.ruff_cache/
.ty_cache/
.mypy_cache/
.pyre/
# Jupyter
.ipynb_checkpoints
# IDE local
.vscode/
.idea/
# Env
.env
+1
View File
@@ -10,6 +10,7 @@
autoSetupRemote = true
[core]
editor = nano
excludesfile = ~/.gitignore_global
[diff]
algorithm = histogram
[alias]
+14
View File
@@ -0,0 +1,14 @@
# OS
.DS_Store
Thumbs.db
desktop.ini
# Editors
.vscode/
.idea/
*.swp
*.swo
*~
.netrwhist
# Direnv / env
.envrc
.env.local