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