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
|
autoSetupRemote = true
|
||||||
[core]
|
[core]
|
||||||
editor = nano
|
editor = nano
|
||||||
|
excludesfile = ~/.gitignore_global
|
||||||
[diff]
|
[diff]
|
||||||
algorithm = histogram
|
algorithm = histogram
|
||||||
[alias]
|
[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