.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. out/
  2. conf/
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. pip-wheel-metadata/
  24. share/python-wheels/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. MANIFEST
  29. # PyInstaller
  30. # Usually these files are written by a python script from a template
  31. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  32. *.manifest
  33. *.spec
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .coverage
  42. .coverage.*
  43. .cache
  44. nosetests.xml
  45. coverage.xml
  46. *.cover
  47. *.py,cover
  48. .hypothesis/
  49. .pytest_cache/
  50. # Translations
  51. *.mo
  52. *.pot
  53. # Django stuff:
  54. *.log
  55. local_settings.py
  56. db.sqlite3
  57. db.sqlite3-journal
  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. # pipenv
  75. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  76. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  77. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  78. # install all needed dependencies.
  79. #Pipfile.lock
  80. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  81. __pypackages__/
  82. # Celery stuff
  83. celerybeat-schedule
  84. celerybeat.pid
  85. # SageMath parsed files
  86. *.sage.py
  87. # Environments
  88. .env
  89. .venv
  90. env/
  91. venv/
  92. ENV/
  93. env.bak/
  94. venv.bak/
  95. # Spyder project settings
  96. .spyderproject
  97. .spyproject
  98. # Rope project settings
  99. .ropeproject
  100. # mkdocs documentation
  101. /site
  102. # mypy
  103. .mypy_cache/
  104. .dmypy.json
  105. dmypy.json
  106. # Pyre type checker
  107. .pyre/