.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. ### Example user template template
  2. ### Example user template
  3. # IntelliJ project files
  4. .idea
  5. *.iml
  6. out
  7. gen
  8. ### Python template
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. share/python-wheels/
  30. *.egg-info/
  31. .installed.cfg
  32. *.egg
  33. MANIFEST
  34. # PyInstaller
  35. # Usually these files are written by a python script from a template
  36. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  37. *.manifest
  38. *.spec
  39. # Installer logs
  40. pip-log.txt
  41. pip-delete-this-directory.txt
  42. # Unit test / coverage reports
  43. htmlcov/
  44. .tox/
  45. .nox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. *.py,cover
  53. .hypothesis/
  54. .pytest_cache/
  55. cover/
  56. # Translations
  57. *.mo
  58. *.pot
  59. # Django stuff:
  60. *.log
  61. local_settings.py
  62. db.sqlite3
  63. db.sqlite3-journal
  64. # Flask stuff:
  65. instance/
  66. .webassets-cache
  67. # Scrapy stuff:
  68. .scrapy
  69. # Sphinx documentation
  70. docs/_build/
  71. # PyBuilder
  72. .pybuilder/
  73. target/
  74. # Jupyter Notebook
  75. .ipynb_checkpoints
  76. # IPython
  77. profile_default/
  78. ipython_config.py
  79. # pyenv
  80. # For a library or package, you might want to ignore these files since the code is
  81. # intended to run in multiple environments; otherwise, check them in:
  82. # .python-version
  83. # pipenv
  84. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  85. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  86. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  87. # install all needed dependencies.
  88. #Pipfile.lock
  89. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  90. __pypackages__/
  91. # Celery stuff
  92. celerybeat-schedule
  93. celerybeat.pid
  94. # SageMath parsed files
  95. *.sage.py
  96. # Environments
  97. .env
  98. .venv
  99. venv/
  100. env.bak/
  101. venv.bak/
  102. # Spyder project settings
  103. .spyderproject
  104. .spyproject
  105. # Rope project settings
  106. .ropeproject
  107. # mkdocs documentation
  108. /site
  109. # mypy
  110. .mypy_cache/
  111. .dmypy.json
  112. dmypy.json
  113. # Pyre type checker
  114. .pyre/
  115. # pytype static type analyzer
  116. .pytype/
  117. # Cython debug symbols
  118. cython_debug/