.gitignore 804 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # IGNORE ALL INPUT/OUTPUT
  2. *.dot
  3. *.lola
  4. *.svg
  5. *.xml
  6. venv/
  7. # SVN
  8. .svn/
  9. # SVG figures for graphs
  10. dot/
  11. pic/
  12. # Byte-compiled / optimized / DLL files
  13. __pycache__/
  14. *.py[cod]
  15. # Profiling results
  16. *.lprof
  17. # C extensions
  18. *.so
  19. # Distribution / packaging
  20. .Python
  21. env/
  22. bin/
  23. build/
  24. develop-eggs/
  25. dist/
  26. eggs/
  27. lib/
  28. lib64/
  29. parts/
  30. sdist/
  31. var/
  32. *.egg-info/
  33. .installed.cfg
  34. *.egg
  35. # Installer logs
  36. pip-log.txt
  37. pip-delete-this-directory.txt
  38. # Unit test / coverage reports
  39. htmlcov/
  40. .tox/
  41. .coverage
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. # Translations
  46. *.mo
  47. # Mr Developer
  48. .mr.developer.cfg
  49. .project
  50. .pydevproject
  51. # Rope
  52. .ropeproject
  53. # Django stuff:
  54. *.log
  55. *.pot
  56. # Sphinx documentation
  57. docs/_build/
  58. #pycharm
  59. .idea
  60. .settings/
  61. *.py.bak
  62. *.DS_Store
  63. # Latex
  64. *.pptx#
  65. *.aux
  66. *.nav
  67. *.out
  68. *.snm
  69. *.synctex.gz
  70. *.toc
  71. *.bbl
  72. *.blg