.gitignore 336 B

12345678910111213141516171819202122232425
  1. docs/_build
  2. .ignored
  3. .idea
  4. # Ignore irrelevant files from the Sublime Text editor
  5. *.sublime-workspace
  6. *.sublime-project
  7. # Ignore irrelevant files from the VS code editor
  8. .vscode/
  9. # Ignore .hgignore for contributors using Mercurial.
  10. .hgignore
  11. # Ignore files generated during build
  12. build/
  13. venv/
  14. *.egg-info
  15. __pycache__
  16. *.swp
  17. venvs