python-template/.gitignore

48 lines
685 B
Plaintext
Raw Normal View History

2024-04-25 17:46:34 +00:00
# Python byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
2024-06-30 19:48:43 +00:00
# Cache directories from various tools
2024-04-25 17:46:34 +00:00
.pytest_cache/
.mypy_cache/
# Virtual environments
.venv/
2024-06-30 19:48:43 +00:00
# Python packaging / distribution files
2024-04-25 17:46:34 +00:00
dist/
# Pytest coverage reports
htmlcov/
.coverage*
coverage.xml
# Sphinx documentation
docs/_build/
2024-06-30 19:48:43 +00:00
# Local python version information (pyenv/rye)
2024-04-25 17:46:34 +00:00
.python-version
# Editor generated files
.idea/
.vscode/
.spyproject/
.spyderproject/
.replit
.neoconf.json
2024-06-30 19:48:43 +00:00
# Folder attributes / configuration files on various platforms
2024-04-25 17:46:34 +00:00
.DS_STORE
2024-06-30 19:48:43 +00:00
[Dd]esktop.ini
.directory
# Trash directories
.Trash-*
$RECYCLE.BIN/
2024-04-25 17:46:34 +00:00
# Environmental, backup and personal files
.env
*.bak
TODO