.gitignore 250 B

12345678910111213141516171819202122232425
  1. # Python stuff
  2. *.pyc
  3. __pycache__
  4. # vim swapfiles
  5. *.sw?
  6. # python packaging
  7. MANIFEST
  8. dist/
  9. build/
  10. *.egg-info/
  11. # PyCharm stuff
  12. .idea/
  13. # Sphinx template
  14. docs/source/.templates/layout.html
  15. # Eclipse stuff
  16. .project
  17. .pydevproject
  18. # Virtual envs
  19. venv*