mkproj: tag pyproject with workspace/owner, drop .gitignore, dev deps, initial commit; add global gitignore
This commit is contained in:
@@ -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
|
||||
@@ -10,6 +10,7 @@
|
||||
autoSetupRemote = true
|
||||
[core]
|
||||
editor = nano
|
||||
excludesfile = ~/.gitignore_global
|
||||
[diff]
|
||||
algorithm = histogram
|
||||
[alias]
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
# Editors
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.netrwhist
|
||||
# Direnv / env
|
||||
.envrc
|
||||
.env.local
|
||||
Reference in New Issue
Block a user