.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. logs/
  6. examples/html/
  7. examples/output_*.json
  8. examples/*.zip
  9. *.pyc
  10. examples/videos/
  11. # C extensions
  12. *.so
  13. tmp
  14. *.ipynb
  15. # Distribution / packaging
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. MANIFEST
  33. # PyInstaller
  34. # Usually these files are written by a python script from a template
  35. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  36. *.manifest
  37. *.spec
  38. # Installer logs
  39. pip-log.txt
  40. pip-delete-this-directory.txt
  41. # Unit test / coverage reports
  42. htmlcov/
  43. .tox/
  44. .nox/
  45. .coverage
  46. .coverage.*
  47. .cache
  48. nosetests.xml
  49. coverage.xml
  50. *.cover
  51. .hypothesis/
  52. .pytest_cache/
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. local_settings.py
  59. db.sqlite3
  60. # Flask stuff:
  61. instance/
  62. .webassets-cache
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. target/
  69. # Jupyter Notebook
  70. .ipynb_checkpoints
  71. # IPython
  72. profile_default/
  73. ipython_config.py
  74. # pyenv
  75. .python-version
  76. # celery beat schedule file
  77. celerybeat-schedule
  78. # SageMath parsed files
  79. *.sage.py
  80. # Environments
  81. .venv
  82. env/
  83. venv/
  84. ENV/
  85. env.bak/
  86. venv.bak/
  87. # Spyder project settings
  88. .spyderproject
  89. .spyproject
  90. # Rope project settings
  91. .ropeproject
  92. # mkdocs documentation
  93. /site
  94. # mypy
  95. .mypy_cache/
  96. .dmypy.json
  97. dmypy.json
  98. # Pyre type checker
  99. .pyre/
  100. # IDE
  101. .idea/
  102. .vscode/
  103. .DS_Store