.gitignore 1.4 KB

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