.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. pip-wheel-metadata/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. .hypothesis/
  46. .pytest_cache/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. # Flask stuff:
  55. instance/
  56. .webassets-cache
  57. # Scrapy stuff:
  58. .scrapy
  59. # Sphinx documentation
  60. docs/_build/
  61. # PyBuilder
  62. target/
  63. # Jupyter Notebook
  64. .ipynb_checkpoints
  65. # IPython
  66. profile_default/
  67. ipython_config.py
  68. # pyenv
  69. .python-version
  70. # pipenv
  71. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  72. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  73. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  74. # install all needed dependencies.
  75. #Pipfile.lock
  76. # celery beat schedule file
  77. celerybeat-schedule
  78. # SageMath parsed files
  79. *.sage.py
  80. # Environments
  81. .env
  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/