.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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. share/python-wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .nox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *.cover
  44. *.py,cover
  45. .hypothesis/
  46. .pytest_cache/
  47. cover/
  48. # Translations
  49. *.mo
  50. *.pot
  51. # Django stuff:
  52. *.log
  53. local_settings.py
  54. db.sqlite3
  55. db.sqlite3-journal
  56. # Flask stuff:
  57. instance/
  58. .webassets-cache
  59. # Scrapy stuff:
  60. .scrapy
  61. # Sphinx documentation
  62. docs/_build/
  63. # PyBuilder
  64. .pybuilder/
  65. target/
  66. # Jupyter Notebook
  67. .ipynb_checkpoints
  68. # IPython
  69. profile_default/
  70. ipython_config.py
  71. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  72. __pypackages__/
  73. # Celery stuff
  74. celerybeat-schedule
  75. celerybeat.pid
  76. # SageMath parsed files
  77. *.sage.py
  78. # Environments
  79. .env
  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. # pytype static type analyzer
  100. .pytype/
  101. # Cython debug symbols
  102. cython_debug/