26 lines
258 B
Plaintext
26 lines
258 B
Plaintext
|
# Python venv
|
||
|
# Change this manually if you've changed your venv name
|
||
|
venv/
|
||
|
|
||
|
# Python built packages
|
||
|
dist/
|
||
|
|
||
|
# Docs output
|
||
|
docs/build
|
||
|
|
||
|
# Caches
|
||
|
__pycache__/
|
||
|
.pytest_cache/
|
||
|
*.pyc
|
||
|
|
||
|
# IDEs
|
||
|
.idea/
|
||
|
.vim/
|
||
|
*.swp
|
||
|
|
||
|
# Environment variables file
|
||
|
.env
|
||
|
|
||
|
# Ctags file
|
||
|
tags
|