.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. .env
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. .hypothesis/
  53. .pytest_cache/
  54. # Translations
  55. *.mo
  56. *.pot
  57. # Django stuff:
  58. *.log
  59. local_settings.py
  60. db.sqlite3
  61. # Flask stuff:
  62. instance/
  63. .webassets-cache
  64. # Scrapy stuff:
  65. .scrapy
  66. # Sphinx documentation
  67. docs/_build/
  68. # PyBuilder
  69. target/
  70. # Jupyter Notebook
  71. .ipynb_checkpoints
  72. # IPython
  73. profile_default/
  74. ipython_config.py
  75. # pyenv
  76. .python-version
  77. # celery beat schedule file
  78. celerybeat-schedule
  79. # SageMath parsed files
  80. *.sage.py
  81. # Environments
  82. .venv
  83. env/
  84. venv/
  85. ENV/
  86. env.bak/
  87. venv.bak/
  88. # Spyder project settings
  89. .spyderproject
  90. .spyproject
  91. # Rope project settings
  92. .ropeproject
  93. # mkdocs documentation
  94. /site
  95. # mypy
  96. .mypy_cache/
  97. .dmypy.json
  98. dmypy.json
  99. # Pyre type checker
  100. .pyre/
  101. # IDE
  102. .idea/
  103. .vscode/
  104. .DS_Store